forked from VoxeLibre/VoxeLibre
Fix lightning on_strike api + rename to on_lightning_strike
This commit is contained in:
parent
d18f55aa48
commit
21f3782439
|
@ -4939,6 +4939,7 @@ minetest.register_entity(name, {
|
||||||
|
|
||||||
harmed_by_heal = def.harmed_by_heal,
|
harmed_by_heal = def.harmed_by_heal,
|
||||||
|
|
||||||
|
on_lightning_strike = def.on_lightning_strike
|
||||||
})
|
})
|
||||||
|
|
||||||
if minetest.get_modpath("doc_identifier") ~= nil then
|
if minetest.get_modpath("doc_identifier") ~= nil then
|
||||||
|
|
|
@ -135,28 +135,12 @@ function lightning.strike_func(pos, pos2, objects)
|
||||||
-- damage nearby objects, transform mobs
|
-- damage nearby objects, transform mobs
|
||||||
for _, obj in pairs(objects) do
|
for _, obj in pairs(objects) do
|
||||||
local lua = obj:get_luaentity()
|
local lua = obj:get_luaentity()
|
||||||
if lua and lua._on_strike then
|
if lua and lua.is_mob then
|
||||||
lua._on_strike(lua, pos, pos2, objects)
|
if not lua.on_lightning_strike or ( lua.on_lightning_strike and lua.on_lightning_strike(lua, pos, pos2, objects) ) ~= true then
|
||||||
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
|
|
||||||
if lua.base_texture[1] == "mobs_mc_mooshroom.png" then
|
|
||||||
lua.base_texture = { "mobs_mc_mooshroom_brown.png", "mobs_mc_mushroom_brown.png" }
|
|
||||||
else
|
|
||||||
lua.base_texture = { "mobs_mc_mooshroom.png", "mobs_mc_mushroom_red.png" }
|
|
||||||
end
|
|
||||||
obj:set_properties({ textures = lua.base_texture })
|
|
||||||
elseif lua and lua.name == "mobs_mc:villager" then
|
|
||||||
mcl_util.replace_mob(obj, "mobs_mc:witch")
|
|
||||||
elseif lua and lua.name == "mobs_mc:creeper" then
|
|
||||||
mcl_util.replace_mob(obj, "mobs_mc:creeper_charged")
|
|
||||||
else
|
|
||||||
-- WARNING: unsafe entity handling. object may be removed immediately
|
|
||||||
mcl_util.deal_damage(obj, 5, { type = "lightning_bolt" })
|
mcl_util.deal_damage(obj, 5, { type = "lightning_bolt" })
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
local playerlist = get_connected_players()
|
local playerlist = get_connected_players()
|
||||||
for i = 1, #playerlist do
|
for i = 1, #playerlist do
|
||||||
|
|
Loading…
Reference in New Issue