Fix nil name error

This commit is contained in:
TenPlus1 2016-11-10 11:36:46 +00:00
parent 053866c05b
commit 9990b12a12
1 changed files with 2 additions and 1 deletions

View File

@ -2960,13 +2960,14 @@ end
-- protect tamed mob with rune iten
function mobs:protect(self, clicker)
local name = clicker:get_player_name()
if self.tamed == false then
minetest.chat_send_player(name, S("Not tamed!"))
return false
end
local tool = clicker:get_wielded_item()
local name = clicker:get_player_name()
if tool:get_name() == "mobs:protector" then