Update chatcommands.lua

This commit is contained in:
Gerold55 2019-04-08 14:32:42 -04:00 committed by GitHub
parent 12d0cfe11d
commit dd7f3b608a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,6 +9,6 @@ minetest.register_chatcommand("heal", {
inv = player:get_inventory()
player:set_hp(20)
player:set_breath(11)
return true, "you have been healed"
return true, "You have been healed!"
end,
})