mob arrows only affect player/node/mobs redo mob

This commit is contained in:
TenPlus1 2017-07-07 20:07:06 +01:00
parent 2b39c6f0fa
commit 3965b237f1
1 changed files with 6 additions and 10 deletions

16
api.lua
View File

@ -1,9 +1,9 @@
-- Mobs Api (5th July 2017)
-- Mobs Api (7th July 2017)
mobs = {}
mobs.mod = "redo"
mobs.version = "20170705"
mobs.version = "20170707"
-- Intllib
@ -3045,16 +3045,12 @@ function mobs:register_arrow(name, def)
end
local entity = player:get_luaentity()
and player:get_luaentity().name or ""
if self.hit_mob
if entity
and self.hit_mob
and tostring(player) ~= self.owner_id
and entity ~= self.object:get_luaentity().name
and entity ~= "__builtin:item"
and entity ~= "__builtin:falling_node"
and entity ~= "gauges:hp_bar"
and entity ~= "signs:text"
and entity ~= "itemframes:item" then
and entity.name ~= self.object:get_luaentity().name
and entity._cmi_is_mob == true then
self.hit_mob(self, player)