Attempt 3: Changed the way that the cat.on_spawn picks a texture from the list.

This commit is contained in:
Michieal 2022-12-15 02:06:15 -05:00
parent 0f77909868
commit 5f4a0d837b
1 changed files with 2 additions and 2 deletions

View File

@ -162,8 +162,8 @@ cat.on_spawn = function(self)
self._texture = {"mobs_mc_cat_black.png"}
end
if not self._texture then
local max_tex = 3 -- hard coded because table.maxn() failed.
self._texture = cat.textures[pr.next(1,max_tex)] -- pick a random texture.
local max_tex = 3
self._texture = cat.textures[pr:next(1,max_tex)] -- pick a random texture.
end
self.object:set_properties({textures = {self._texture}})
end