mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 10:12:53 +00:00
Merge remote-tracking branch 'upstream/master' into DecreeCommands
This commit is contained in:
commit
30245f4aed
@ -450,7 +450,7 @@ public class Iris extends VolmitPlugin implements Listener {
|
||||
} else {
|
||||
dim = IrisData.loadAnyDimension(id);
|
||||
}
|
||||
Iris.info("Generator ID: " + id + " requested by bukkit/plugin");
|
||||
Iris.debug("Generator ID: " + id + " requested by bukkit/plugin");
|
||||
|
||||
if (dim == null) {
|
||||
Iris.warn("Unable to find dimension type " + id + " Looking for online packs...");
|
||||
@ -464,7 +464,7 @@ public class Iris extends VolmitPlugin implements Listener {
|
||||
Iris.info("Resolved missing dimension, proceeding with generation.");
|
||||
}
|
||||
}
|
||||
Iris.info("Assuming IrisDimension: " + dim.getName());
|
||||
Iris.debug("Assuming IrisDimension: " + dim.getName());
|
||||
|
||||
IrisWorld w = IrisWorld.builder()
|
||||
.name(worldName)
|
||||
@ -474,7 +474,7 @@ public class Iris extends VolmitPlugin implements Listener {
|
||||
.minHeight(0)
|
||||
.maxHeight(256)
|
||||
.build();
|
||||
return new BukkitChunkGenerator(w, false, new File(w.worldFolder(), "iris"), dim.getLoadKey());
|
||||
return new BukkitChunkGenerator(w, false, new File(w.worldFolder(), "iris"), dim.getName());
|
||||
}
|
||||
|
||||
public static void msg(String string) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user