Clean up variable handling in minetest.after

This commit is contained in:
Wuzzy 2019-08-20 06:24:57 +02:00
parent 104b2e947a
commit 03a7de0b2d
1 changed files with 6 additions and 4 deletions

View File

@ -52,10 +52,12 @@ local function hit(self)
textures = {"tsm_pyramids_mummy.png^tsm_pyramids_hit.png"},
}
self.object:set_properties(prop)
minetest.after(0.4, function()
local prop = {textures = mummy_texture,}
self.object:set_properties(prop)
end)
minetest.after(0.4, function(self)
local prop = {textures = mummy_texture,}
if self.object ~= nil then
self.object:set_properties(prop)
end
end, self)
end
local function mummy_update_visuals_def(self)