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 worldName = args[0];
String type = IrisSettings.get().getGenerator().getDefaultWorldType(); String type = IrisSettings.get().getGenerator().getDefaultWorldType();
long seed = random.nextLong(); //Random seed when creating a world 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(); boolean multiverse = Iris.linkMultiverseCore.supported();
for (String i : args) { for (String i : args) {