From 578fbf999e849d62f372459e4eca0dde5e352897 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Mon, 10 Aug 2020 10:44:57 +0200 Subject: [PATCH] Change word in command help --- mods/ITEMS/mcl_potions/commands.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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,