mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 18:23:06 +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 {
|
} else {
|
||||||
dim = IrisData.loadAnyDimension(id);
|
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) {
|
if (dim == null) {
|
||||||
Iris.warn("Unable to find dimension type " + id + " Looking for online packs...");
|
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("Resolved missing dimension, proceeding with generation.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Iris.info("Assuming IrisDimension: " + dim.getName());
|
Iris.debug("Assuming IrisDimension: " + dim.getName());
|
||||||
|
|
||||||
IrisWorld w = IrisWorld.builder()
|
IrisWorld w = IrisWorld.builder()
|
||||||
.name(worldName)
|
.name(worldName)
|
||||||
@ -474,7 +474,7 @@ public class Iris extends VolmitPlugin implements Listener {
|
|||||||
.minHeight(0)
|
.minHeight(0)
|
||||||
.maxHeight(256)
|
.maxHeight(256)
|
||||||
.build();
|
.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) {
|
public static void msg(String string) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user