mirror of
https://github.com/EngineHub/WorldEdit.git
synced 2024-12-21 04:49:51 +08:00
Changed super pickaxe command to //.
This commit is contained in:
parent
765575b433
commit
ca2ed71805
@ -115,7 +115,7 @@ private WorldEdit() {
|
||||
commands.put("/toggleplace", "Toggle placing at pos #1");
|
||||
commands.put("//wand", "Gives you the \"edit wand\"");
|
||||
commands.put("/toggleeditwand", "Toggles edit wand selection");
|
||||
commands.put("/,", "Toggles super pick axe.");
|
||||
commands.put("//", "Toggles super pick axe.");
|
||||
commands.put("//undo", "Undo");
|
||||
commands.put("//redo", "Redo");
|
||||
commands.put("/clearhistory", "Clear history");
|
||||
@ -347,7 +347,7 @@ public boolean performCommand(WorldEditPlayer player,
|
||||
return true;
|
||||
|
||||
// Toggle super pick axe
|
||||
} else if (split[0].equalsIgnoreCase("/,")) {
|
||||
} else if (split[0].equalsIgnoreCase("//")) {
|
||||
checkArgs(split, 0, 0, split[0]);
|
||||
if (session.toggleSuperPickAxe()) {
|
||||
player.print("Super pick axe enabled.");
|
||||
|
Loading…
Reference in New Issue
Block a user