add lightning API support for mobs

This commit is contained in:
NO11 2021-09-09 13:21:33 +00:00 committed by Gitea
parent 03829dd518
commit 0584d16569
1 changed files with 4 additions and 0 deletions

View File

@ -156,6 +156,10 @@ lightning.register_on_strike(function(pos, pos2, objects)
-- damage nearby objects, transform mobs
for _, obj in pairs(objects) do
local lua = obj:get_luaentity()
if lua and lua._on_strike then
lua._on_strike(lua, pos, pos2, objects)
end
-- remove this when mob API is done
if lua and lua.name == "mobs_mc:pig" then
mcl_util.replace_mob(obj, "mobs_mc:pigman")
elseif lua and lua.name == "mobs_mc:mooshroom" then