Skip to content

Commit 204232b

Browse files
committed
Missed this spot when making fixes - this should address all of @pau101's review except that the builders do not store pure, immutable data
1 parent ab94109 commit 204232b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/mcmoddev/orespawn/impl/os3/BuilderLogicImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public DimensionBuilder getDimension(String name) {
6060
// I'd love for the following to be realistic...
6161
// return this.DimensionBuilder(name);
6262
Integer id = null;
63-
switch(name.toLowerCase()) {
63+
switch(name.toLowerCase(Locale.ROOT)) {
6464
case "overworld":
6565
id = 0;
6666
break;

0 commit comments

Comments
 (0)