forked from VoxeLibre/VoxeLibre
Changed the way that the cat.on_spawn picks a texture from the list.
This commit is contained in:
parent
38e49a4b80
commit
20618a5a74
|
@ -162,7 +162,8 @@ cat.on_spawn = function(self)
|
|||
self._texture = {"mobs_mc_cat_black.png"}
|
||||
end
|
||||
if not self._texture then
|
||||
self._texture = cat.textures[math.random(#cat.textures)]
|
||||
local max_tex = table.maxn (cat.textures)
|
||||
self._texture = cat.textures[pr.next(1,max_tex)] -- pick a random texture.
|
||||
end
|
||||
self.object:set_properties({textures = {self._texture}})
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue