Skip to content

Commit 8a30f3e

Browse files
committed
Tentative fix for hybrids altering Bukkits environment enum, Fixes: #769
1 parent df0250c commit 8a30f3e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • implementations/paper/src/main/java/de/bluecolored/bluemap/bukkit

implementations/paper/src/main/java/de/bluecolored/bluemap/bukkit/BukkitWorld.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public BukkitWorld(World delegate) {
5151
case NORMAL -> DataPack.DIMENSION_OVERWORLD;
5252
case NETHER -> DataPack.DIMENSION_THE_NETHER;
5353
case THE_END -> DataPack.DIMENSION_THE_END;
54-
case CUSTOM -> {
54+
default -> {
5555
var id = delegate.key();
5656
yield new Key(id.namespace(), id.value());
5757
}

0 commit comments

Comments
 (0)