mirror of
http://repo.or.cz/minetest_pyramids/tsm_pyramids.git
synced 2024-12-22 15:30:19 +01:00
Clean up variable handling in minetest.after
This commit is contained in:
parent
104b2e947a
commit
03a7de0b2d
10
mummy.lua
10
mummy.lua
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user