summaryrefslogtreecommitdiff
path: root/worldedit_commands/safe.lua
diff options
context:
space:
mode:
Diffstat (limited to 'worldedit_commands/safe.lua')
-rw-r--r--worldedit_commands/safe.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/worldedit_commands/safe.lua b/worldedit_commands/safe.lua
index c6751c1..10652c7 100644
--- a/worldedit_commands/safe.lua
+++ b/worldedit_commands/safe.lua
@@ -26,11 +26,11 @@ safe_region = function(callback, nodes_needed)
--save callback to call later
safe_region_callback[name], safe_region_param[name] = callback, param
- worldedit.player_notify(name, "WARNING: this operation could affect up to " .. count .. " nodes; type //y to continue or //n to cancel")
+ worldedit.player_notify(name, "WARNING: this operation could affect up to " .. count .. " nodes; type /we-y to continue or /we-n to cancel")
end
end
-minetest.register_chatcommand("/y", {
+minetest.register_chatcommand("we-y", {
params = "",
description = "Confirm a pending operation",
func = function(name)
@@ -52,7 +52,7 @@ minetest.register_chatcommand("/y", {
end,
})
-minetest.register_chatcommand("/n", {
+minetest.register_chatcommand("we-n", {
params = "",
description = "Confirm a pending operation",
func = function(name)