Skip to content

Commit

Permalink
Stop forcing loiwercase world names
Browse files Browse the repository at this point in the history
  • Loading branch information
dordsor21 authored Oct 2, 2020
1 parent 2f5ce67 commit 95f509d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ private static SettingsNodesWrapper wrap(String plotManager) {

private static boolean isValidWorldName(String s) {
return s.chars().allMatch((i) -> {
return i == 95 || i == 45 || i >= 97 && i <= 122 || i >= 48 && i <= 57 || i == 46;
return i == 95 || i == 45 || i >= 97 && i <= 122 || i >= 65 && i <= 90 || i >= 48 && i <= 57 || i == 46;
});
}
}

0 comments on commit 95f509d

Please sign in to comment.