Merge pull request 'Mobs fixes' (#3032) from mobs_cleanup into master

Reviewed-on: MineClone2/MineClone2#3032
This commit is contained in:
cora 2022-11-28 03:26:53 +00:00
commit c4808beef4
6 changed files with 7 additions and 7 deletions

View File

@ -754,7 +754,7 @@ function mob_class:check_herd(dtime)
y = o:get_yaw()
end
if p then
go_to_pos(self,p)
self:go_to_pos(p)
elseif y then
self:set_yaw(y)
end

View File

@ -441,7 +441,7 @@ local horse = {
on_breed = function(parent1, parent2)
local pos = parent1.object:get_pos()
local child = mcl_mobs:spawn_child(pos, parent1.name)
local child = mcl_mobs.spawn_child(pos, parent1.name)
if child then
local ent_c = child:get_luaentity()
local p = math.random(1, 2)

View File

@ -221,7 +221,7 @@ mcl_mobs.register_mob("mobs_mc:llama", {
else
parent = parent2
end
child = mcl_mobs:spawn_child(pos, parent.name)
child = mcl_mobs.spawn_child(pos, parent.name)
if child then
local ent_c = child:get_luaentity()
ent_c.base_texture = table.copy(ent_c.base_texture)

View File

@ -186,7 +186,7 @@ mcl_mobs.register_mob("mobs_mc:pig", {
on_breed = function(parent1, parent2)
local pos = parent1.object:get_pos()
local child = mcl_mobs:spawn_child(pos, parent1.name)
local child = mcl_mobs.spawn_child(pos, parent1.name)
if child then
local ent_c = child:get_luaentity()
ent_c.tamed = true

View File

@ -267,7 +267,7 @@ mcl_mobs.register_mob("mobs_mc:sheep", {
on_breed = function(parent1, parent2)
-- Breed sheep and choose a fur color for the child.
local pos = parent1.object:get_pos()
local child = mcl_mobs:spawn_child(pos, parent1.name)
local child = mcl_mobs.spawn_child(pos, parent1.name)
if child then
local ent_c = child:get_luaentity()
local color1 = parent1.color

View File

@ -141,7 +141,7 @@ local function egg_on_step(self, dtime)
local r = math.random(1,8)
if r == 1 then
mcl_mobs:spawn_child(self._lastpos, "mobs_mc:chicken")
mcl_mobs.spawn_child(self._lastpos, "mobs_mc:chicken")
-- BONUS ROUND: 1/32 chance to spawn 3 additional chicks
local r = math.random(1,32)
@ -153,7 +153,7 @@ local function egg_on_step(self, dtime)
}
for o=1, 3 do
local pos = vector.add(self._lastpos, offsets[o])
mcl_mobs:spawn_child(pos, "mobs_mc:chicken")
mcl_mobs.spawn_child(pos, "mobs_mc:chicken")
end
end
end