added player check for protected hits

This commit is contained in:
TenPlus1 2016-11-08 16:48:33 +00:00
parent b71369f487
commit 053866c05b
1 changed files with 1 additions and 1 deletions

View File

@ -1849,7 +1849,7 @@ local mob_punch = function(self, hitter, tflp, tool_capabilities, dir)
end
-- is mob protected?
if self.protected
if self.protected and hitter:is_player()
and minetest.is_protected(self.object:getpos(), hitter:get_player_name()) then
minetest.chat_send_player(hitter:get_player_name(), "Mob has been protected!")
return