1
0
mirror of https://codeberg.org/tenplus1/mobs_monster.git synced 2024-12-22 17:00:26 +01:00

remove any older model mese monsters that haven't already despawned.

This commit is contained in:
tenplus1 2023-01-11 08:29:39 +00:00
parent bceda9c75f
commit 0d17a08762

View File

@ -209,6 +209,15 @@ mobs:register_mob("mobs_monster:mese_monster", {
punch_end = 189 punch_end = 189
}, },
after_activate = function(self, staticdata, def, dtime)
local tex = self and self.textures and self.textures[1]
if tex == "zmobs_mese_monster.png" then
self.object:remove()
end
end,
on_spawn = function(self) on_spawn = function(self)
local pos = self.object:get_pos() local pos = self.object:get_pos()