forked from MineClone5/MineClone5
Atteempt to fix map on itemframe by using EliasFlickenstein in mcl2
This commit is contained in:
parent
8d79e5f7f7
commit
50cbde6380
|
@ -65,7 +65,10 @@ minetest.register_entity("mcl_itemframes:map", {
|
||||||
},
|
},
|
||||||
on_activate = function(self, staticdata)
|
on_activate = function(self, staticdata)
|
||||||
self.id = staticdata
|
self.id = staticdata
|
||||||
self.object:set_properties({textures = {mcl_maps.load_map(self.id)}})
|
mcl_maps.load_map(self.id, function(texture)
|
||||||
|
-- will not crash even if self.object is invalid by now
|
||||||
|
self.object:set_properties({textures = {texture}})
|
||||||
|
end)
|
||||||
end,
|
end,
|
||||||
get_staticdata = function(self)
|
get_staticdata = function(self)
|
||||||
return self.id
|
return self.id
|
||||||
|
|
Loading…
Reference in New Issue