diff --git a/mods/ITEMS/mcl_potions/commands.lua b/mods/ITEMS/mcl_potions/commands.lua index 4c38b394..ad1d65b7 100644 --- a/mods/ITEMS/mcl_potions/commands.lua +++ b/mods/ITEMS/mcl_potions/commands.lua @@ -22,7 +22,7 @@ get_chat_function["heal"] = mcl_potions.healing_func minetest.register_chatcommand("effect",{ params = S(" []"), - description = S("Add a status effect to yourself. Arguments: : name of potion effect, e.g. poison. : duration in seconds. : effect strength multiplier (1 = 100%)"), + description = S("Add a status effect to yourself. Arguments: : name of status effect, e.g. poison. : duration in seconds. : effect strength multiplier (1 = 100%)"), privs = {server = true}, func = function(name, params) @@ -49,7 +49,7 @@ minetest.register_chatcommand("effect",{ get_chat_function[P[1]](minetest.get_player_by_name(name), tonumber(P[3]), tonumber(P[2])) return true else - return false, S("@1 is not an available potion effect.", P[1]) + return false, S("@1 is not an available status effect.", P[1]) end end,