From bb0b2d2f71b760ac1c5a97f3840008cc0026f84e Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Sun, 14 Oct 2018 21:06:17 +0100 Subject: [PATCH] //mix, //replace, //replaceinverse: Update param help --- worldedit_commands/init.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/worldedit_commands/init.lua b/worldedit_commands/init.lua index 5a568ec..84e9abc 100644 --- a/worldedit_commands/init.lua +++ b/worldedit_commands/init.lua @@ -425,7 +425,7 @@ minetest.register_chatcommand("/param2", { }) minetest.register_chatcommand("/mix", { - params = " ...", + params = " [] [ []] ...", description = "Fill the current WorldEdit region with a random mix of , ...", privs = {worldedit=true}, func = safe_region(function(name, param) @@ -486,7 +486,7 @@ local check_replace = function(name, param) end minetest.register_chatcommand("/replace", { - params = " ", + params = " [] [ []]", description = "Replace all instances of with in the current WorldEdit region", privs = {worldedit=true}, func = safe_region(function(name, param) @@ -530,7 +530,7 @@ minetest.register_chatcommand("/replace", { }) minetest.register_chatcommand("/replaceinverse", { - params = " ", + params = " [] [ []]", description = "Replace all nodes other than with in the current WorldEdit region", privs = {worldedit=true}, func = safe_region(function(name, param)