SPIGOT-4681: Note about additional world creation on STARTUP

This commit is contained in:
md_5 2019-04-08 20:32:00 +10:00
parent 812f66aa99
commit 7c395d429c

View File

@ -874,6 +874,7 @@ public final class CraftServer implements Server {
@Override
public World createWorld(WorldCreator creator) {
Preconditions.checkState(!console.worldServer.isEmpty(), "Cannot create additional worlds on STARTUP");
Validate.notNull(creator, "Creator may not be null");
String name = creator.name();