From c14b7b2c62b9f75c0b34a89f166711a571d923bf Mon Sep 17 00:00:00 2001 From: crabman77 Date: Sat, 20 Jun 2015 22:58:48 +0200 Subject: [PATCH] fixed prop mummy --- mods/tsm_pyramids/mummy.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mods/tsm_pyramids/mummy.lua b/mods/tsm_pyramids/mummy.lua index a6367a66..26651d99 100755 --- a/mods/tsm_pyramids/mummy.lua +++ b/mods/tsm_pyramids/mummy.lua @@ -171,11 +171,11 @@ minetest.register_entity("tsm_pyramids:mummy_spawner", spawner_DEF) function mummy_update_visuals_def(self) --local name = get_player_name() -- visual = default_model_def - npc_anim = 0 -- Animation will be set further below immediately + self.npc_anim = 0 -- Animation will be set further below immediately --npc_sneak[name] = false local prop = { - mesh = mummy_mesh, - textures = mummy_texture, + mesh = self.mesh, + textures = self.textures, --visual_size = {x=1, y=1, z=1}, } self.object:set_properties(prop)