mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 18:23:06 +00:00
Config fixes for pregen
This commit is contained in:
parent
18195b778a
commit
4e81151e11
@ -114,7 +114,7 @@ public class IrisSettings {
|
|||||||
public boolean systemEffects = true;
|
public boolean systemEffects = true;
|
||||||
public boolean systemEntitySpawnOverrides = true;
|
public boolean systemEntitySpawnOverrides = true;
|
||||||
public boolean systemEntityInitialSpawns = true;
|
public boolean systemEntityInitialSpawns = true;
|
||||||
public int maxBiomeChildDepth = 5;
|
public int maxBiomeChildDepth = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
|
@ -73,7 +73,12 @@ public class PregeneratorJob implements PregenListener {
|
|||||||
max.setX(Math.max((xx << 5) + 31, max.getX()));
|
max.setX(Math.max((xx << 5) + 31, max.getX()));
|
||||||
max.setZ(Math.max((zz << 5) + 31, max.getZ()));
|
max.setZ(Math.max((zz << 5) + 31, max.getZ()));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if(IrisSettings.get().getGui().isUseServerLaunchedGuis())
|
||||||
|
{
|
||||||
open();
|
open();
|
||||||
|
}
|
||||||
|
|
||||||
J.a(this.pregenerator::start, 20);
|
J.a(this.pregenerator::start, 20);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user