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

This commit is contained in:
Michieal 2022-12-15 01:59:05 -05:00
parent 20618a5a74
commit 0f77909868
1 changed files with 1 additions and 1 deletions

View File

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