3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-11-03 14:50:30 +01:00

Fix dimension identifier

Dieser Commit ist enthalten in:
KennyTV 2020-05-20 17:02:22 +02:00
Ursprung 92f4e3dd81
Commit af3023562d
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 6BE3B555EBC5982B

Datei anzeigen

@ -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;