mirror of
https://github.com/PryPurity/WorldBorder.git
synced 2024-11-21 11:25:42 +01:00
whoops
This commit is contained in:
parent
51c8438143
commit
8e82108334
@ -590,8 +590,8 @@ public class Config {
|
||||
if (storedFillTask != null) {
|
||||
String worldName = storedFillTask.getString("world");
|
||||
int fillDistance = storedFillTask.getInt("fillDistance", 208);
|
||||
int chunksPerRun = storedFillTask.getInt("chunksPerRun", 2);
|
||||
int tickFrequency = storedFillTask.getInt("tickFrequency", 5);
|
||||
int chunksPerRun = storedFillTask.getInt("chunksPerRun", 1);
|
||||
int tickFrequency = storedFillTask.getInt("tickFrequency", 1);
|
||||
int fillX = storedFillTask.getInt("x", 0);
|
||||
int fillZ = storedFillTask.getInt("z", 0);
|
||||
int fillLength = storedFillTask.getInt("length", 0);
|
||||
|
@ -194,7 +194,7 @@ public class WorldFillTask implements Runnable {
|
||||
for (CoordXZ unload : chunksToUnload) {
|
||||
if (!chunkOnUnloadPreventionList(unload.x, unload.z)) {
|
||||
world.setChunkForceLoaded(unload.x, unload.z, false);
|
||||
world.unloadChunkRequest(unload.x, unload.z);
|
||||
//world.unloadChunkRequest(unload.x, unload.z);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user