forked from VoxeLibre/VoxeLibre
Merge pull request 'Fix tamed ocelot textures not being set correctly' (#3317) from tamed_cat_texture_fix into master
Reviewed-on: MineClone2/MineClone2#3317 Reviewed-by: Michieal <michieal@noreply.git.minetest.land>
This commit is contained in:
commit
876fc2fb50
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue