Merge pull request 'Fix tamed ocelot textures not being set correctly' (#3317) from tamed_cat_texture_fix into master

Reviewed-on: https://git.minetest.land/MineClone2/MineClone2/pulls/3317
Reviewed-by: Michieal <michieal@noreply.git.minetest.land>
This commit is contained in:
PrairieWind 2023-01-15 19:41:51 +00:00
commit 876fc2fb50
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ cat.on_spawn = function(self)
if not self._texture then
self._texture = cat.textures[math.random(#cat.textures)]
end
self.object:set_properties({textures = {self._texture}})
self.object:set_properties({textures = self._texture})
end
mcl_mobs.register_mob("mobs_mc:cat", cat)