Clean up variable handling in minetest.after
This commit is contained in:
parent
104b2e947a
commit
03a7de0b2d
|
@ -52,10 +52,12 @@ local function hit(self)
|
||||||
textures = {"tsm_pyramids_mummy.png^tsm_pyramids_hit.png"},
|
textures = {"tsm_pyramids_mummy.png^tsm_pyramids_hit.png"},
|
||||||
}
|
}
|
||||||
self.object:set_properties(prop)
|
self.object:set_properties(prop)
|
||||||
minetest.after(0.4, function()
|
minetest.after(0.4, function(self)
|
||||||
local prop = {textures = mummy_texture,}
|
local prop = {textures = mummy_texture,}
|
||||||
|
if self.object ~= nil then
|
||||||
self.object:set_properties(prop)
|
self.object:set_properties(prop)
|
||||||
end)
|
end
|
||||||
|
end, self)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function mummy_update_visuals_def(self)
|
local function mummy_update_visuals_def(self)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user