mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-06-16 13:53:55 +00:00
Changed /s to /.s to avoid conflicts.
This commit is contained in:
@ -179,7 +179,7 @@ public class WorldEdit {
|
||||
commands.put("/rbrush", "[ID] <Radius> - Switch to the replacing sphere brush tool");
|
||||
|
||||
commands.put("/cs", "[Filename] <args...> - Execute a CraftScript");
|
||||
commands.put("/s", "<args...> - Re-execute last CraftScript");
|
||||
commands.put("/.s", "<args...> - Re-execute last CraftScript");
|
||||
}
|
||||
|
||||
/**
|
||||
@ -1746,7 +1746,7 @@ public class WorldEdit {
|
||||
return true;
|
||||
|
||||
// CraftScript
|
||||
} else if (split[0].equalsIgnoreCase("/s")) {
|
||||
} else if (split[0].equalsIgnoreCase("/.s")) {
|
||||
checkArgs(split, 1, -1, split[0]);
|
||||
|
||||
String lastScript = session.getLastScript();
|
||||
|
Reference in New Issue
Block a user