From 12d0cfe11d7ea9acc2457539c38426ff6bf598c0 Mon Sep 17 00:00:00 2001 From: Gerold55 Date: Mon, 8 Apr 2019 14:30:52 -0400 Subject: [PATCH] Update chatcommands.lua --- mods/ws_core/chatcommands.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/ws_core/chatcommands.lua b/mods/ws_core/chatcommands.lua index fe145ea..c436f02 100644 --- a/mods/ws_core/chatcommands.lua +++ b/mods/ws_core/chatcommands.lua @@ -1,6 +1,6 @@ minetest.register_chatcommand("heal", { - description = "sets maxumum HP, thirst, breath and hunger vales", + description = "sets maximum HP, thirst, breath and hunger values", privs = {fly = true}, func = function(name) local player = minetest.get_player_by_name(name) @@ -9,6 +9,6 @@ minetest.register_chatcommand("heal", { inv = player:get_inventory() player:set_hp(20) player:set_breath(11) - return true, "you have beed healed" + return true, "you have been healed" end, })