Compare commits

...

4 Commits

Author SHA1 Message Date
Michieal 3091a1fdcb Debugging the cat issue.
ERROR[Server]: Ocelot::Did not remove old entity on tame.
^ that should not happen.
2022-12-15 03:31:35 -05:00
Michieal 5f4a0d837b Attempt 3: Changed the way that the cat.on_spawn picks a texture from the list. 2022-12-15 02:06:15 -05:00
Michieal 0f77909868 Attempt 2: Changed the way that the cat.on_spawn picks a texture from the list. 2022-12-15 01:59:05 -05:00
Michieal 20618a5a74 Changed the way that the cat.on_spawn picks a texture from the list. 2022-12-15 01:50:56 -05:00
2 changed files with 17 additions and 1 deletions

View File

@ -312,6 +312,8 @@ function mob_class:check_breeding()
end
function mob_class:toggle_sit(clicker,p)
local default_walk_chance = 50 -- was previously undefined.
if not self.tamed or self.child or self.owner ~= clicker:get_player_name() then
return
end

View File

@ -9,6 +9,8 @@ local S = minetest.get_translator("mobs_mc")
--################### OCELOT AND CAT
--###################
local OCELOT_DEBUG = true
local pr = PseudoRandom(os.time()*12)
local default_walk_chance = 70
@ -100,6 +102,11 @@ local ocelot = {
ent.owner = clicker:get_player_name()
ent.tamed = true
self.object:remove()
if self.object ~= nil then
minetest.log("error", "Ocelot::Did not remove old entity on tame.")
end
return
end
end
@ -162,7 +169,14 @@ 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 = #cat.textures
if OCELOT_DEBUG then
minetest.log (dump(cat.textures))
end
self._texture = cat.textures[pr:next(1,max_tex)] -- pick a random texture.
if OCELOT_DEBUG then
minetest.log (dump(self._texture))
end
end
self.object:set_properties({textures = {self._texture}})
end