fix centre

This commit is contained in:
okx-code
2026-06-16 01:40:19 +01:00
parent 26eddb90c4
commit 6357ac9169

View File

@@ -203,8 +203,8 @@ public final class ZorwethPlugin extends JavaPlugin {
"Unable to complete rocket transfer. Please reconnect and try again.");
this.pioneerEndTimestampMillis = getConfig().getLong("pioneer-end-timestamp", 0L);
this.worldRadius = getConfig().getInt("world-radius", 0);
this.rocketCentreX = getConfig().getInt("world-centre-x", 0);
this.rocketCentreZ = getConfig().getInt("world-centre-z", 0);
this.rocketCentreX = getConfig().getInt("rocket-centre-x", 0);
this.rocketCentreZ = getConfig().getInt("rocket-centre-z", 0);
this.deltaVMetersPerSecond = getConfig().getDouble("delta-v-meters-per-second", 10_000.0);
this.researchEnabled = getConfig().getBoolean("research.enabled", true);
this.researchPhaseOneRuns = loadPositiveInt("research.phase-one-runs", 1);