mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-23 09:47:38 +00:00
Made all commands support double forward slashes as the command prefix.
This commit is contained in:
parent
24434e3e6f
commit
195c524c34
@ -1972,9 +1972,13 @@ public class WorldEditListener extends PluginListener {
|
|||||||
String searchCmd = split[0].toLowerCase();
|
String searchCmd = split[0].toLowerCase();
|
||||||
|
|
||||||
if (commands.containsKey(searchCmd)
|
if (commands.containsKey(searchCmd)
|
||||||
|| (noDoubleSlash && commands.containsKey("/" + searchCmd))) {
|
|| (noDoubleSlash && commands.containsKey("/" + searchCmd))
|
||||||
|
|| ((searchCmd.length() < 3 || searchCmd.charAt(2) != '/')
|
||||||
|
&& commands.containsKey(searchCmd.substring(1)))) {
|
||||||
if (noDoubleSlash && commands.containsKey("/" + searchCmd)) {
|
if (noDoubleSlash && commands.containsKey("/" + searchCmd)) {
|
||||||
split[0] = "/" + split[0];
|
split[0] = "/" + split[0];
|
||||||
|
} else if (commands.containsKey(searchCmd.substring(1))) {
|
||||||
|
split[0] = split[0].substring(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (canUseCommand(ply, split[0])) {
|
if (canUseCommand(ply, split[0])) {
|
||||||
|
Loading…
Reference in New Issue
Block a user