mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-16 12:43:52 -07:00
Implemented CraftServer.getAllowEnd(). Thanks codename-B!
This commit is contained in:
@@ -223,7 +223,13 @@ public class MinecraftServer implements Runnable, ICommandListener, IMinecraftSe
|
||||
}
|
||||
|
||||
if (k == 2) {
|
||||
dimension = 1;
|
||||
// CraftBukkit start (+ don't do this in server.properties, do it in bukkit.yml)
|
||||
if (this.server.getAllowEnd()) {
|
||||
dimension = 1;
|
||||
} else {
|
||||
continue;
|
||||
}
|
||||
// CraftBukkit end
|
||||
}
|
||||
|
||||
String worldType = Environment.getEnvironment(dimension).toString().toLowerCase();
|
||||
|
Reference in New Issue
Block a user