9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-26 18:49:06 +00:00

Dont pregen created worlds unless they are specified to

This commit is contained in:
Daniel Mills
2021-07-16 07:28:25 -04:00
parent a608da759b
commit 8a737104ef

View File

@@ -118,7 +118,7 @@ public class CommandIrisCreate extends MortarCommand {
String worldName = args[0];
String type = IrisSettings.get().getGenerator().getDefaultWorldType();
long seed = random.nextLong(); //Random seed when creating a world
AtomicInteger pregen = new AtomicInteger(256);
AtomicInteger pregen = new AtomicInteger(0);
boolean multiverse = Iris.linkMultiverseCore.supported();
for (String i : args) {