Fix dimension identifier

This commit is contained in:
KennyTV 2020-05-20 17:02:22 +02:00
parent 92f4e3dd81
commit af3023562d
No known key found for this signature in database
GPG Key ID: 6BE3B555EBC5982B

View File

@ -31,11 +31,11 @@ public enum Environment {
public static Environment getEnvironmentById(String id) { public static Environment getEnvironmentById(String id) {
switch (id) { switch (id) {
case "the_nether": case "minecraft:the_nether":
return NETHER; return NETHER;
case "overworld": case "minecraft:overworld":
return NORMAL; return NORMAL;
case "the_end": case "minecraft:the_end":
return END; return END;
default: default:
return CUSTOM; return CUSTOM;