We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7763156 + 233dc54 commit 48a370bCopy full SHA for 48a370b
src/main/java/org/mvplugins/multiverse/signportals/utils/SignTools.java
@@ -13,7 +13,7 @@ public class SignTools {
13
public static boolean isMVSign(String test, ChatColor color) {
14
if (color == null) {
15
test = ChatColor.stripColor(test);
16
- return test.toLowerCase().matches("[multiverse]") || test.equalsIgnoreCase("[mv]");
+ return test.equalsIgnoreCase("[multiverse]") || test.equalsIgnoreCase("[mv]");
17
}
18
return test.equalsIgnoreCase(color + "[multiverse]") || test.equalsIgnoreCase(color + "[mv]");
19
0 commit comments