Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-03 01:50:07 +01:00
Changed super axe command to /,.
Dieser Commit ist enthalten in:
Ursprung
98d1a0be05
Commit
9739336730
@ -73,7 +73,7 @@ public class WorldEdit {
|
|||||||
commands.put("/editpos2", "Set editing position #2");
|
commands.put("/editpos2", "Set editing position #2");
|
||||||
commands.put("/editwand", "Gives you the \"edit wand\"");
|
commands.put("/editwand", "Gives you the \"edit wand\"");
|
||||||
commands.put("/toggleeditwand", "Toggles edit wand selection");
|
commands.put("/toggleeditwand", "Toggles edit wand selection");
|
||||||
commands.put("/.", "Toggles super pick axe.");
|
commands.put("/,", "Toggles super pick axe.");
|
||||||
commands.put("/editundo", "Undo");
|
commands.put("/editundo", "Undo");
|
||||||
commands.put("/editredo", "Redo");
|
commands.put("/editredo", "Redo");
|
||||||
commands.put("/clearhistory", "Clear history");
|
commands.put("/clearhistory", "Clear history");
|
||||||
@ -263,7 +263,7 @@ public class WorldEdit {
|
|||||||
return true;
|
return true;
|
||||||
|
|
||||||
// Toggle super pick axe
|
// Toggle super pick axe
|
||||||
} else if (split[0].equalsIgnoreCase("/.")) {
|
} else if (split[0].equalsIgnoreCase("/,")) {
|
||||||
checkArgs(split, 0, 0, split[0]);
|
checkArgs(split, 0, 0, split[0]);
|
||||||
if (session.toggleSuperPickAxe()) {
|
if (session.toggleSuperPickAxe()) {
|
||||||
player.print("Super pick axe enabled.");
|
player.print("Super pick axe enabled.");
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren