forked from VoxeLibre/VoxeLibre
fix the other 2 throw_xp occurences
This commit is contained in:
parent
caacb378de
commit
3feca330c9
|
@ -1556,7 +1556,7 @@ local breed = function(self)
|
|||
|
||||
-- Give XP
|
||||
if mod_experience then
|
||||
mcl_experience.throw_experience(pos, math.random(1, 7))
|
||||
mcl_experience.throw_xp(pos, math.random(1, 7))
|
||||
end
|
||||
|
||||
-- custom breed function
|
||||
|
|
|
@ -97,7 +97,7 @@ mobs:register_mob("mobs_mc:enderdragon", {
|
|||
mcl_portals.spawn_gateway_portal()
|
||||
mcl_structures.call_struct(self._portal_pos, "end_exit_portal_open")
|
||||
if self._initial then
|
||||
mcl_experience.throw_experience(pos, 11500) -- 500 + 11500 = 12000
|
||||
mcl_experience.throw_xp(pos, 11500) -- 500 + 11500 = 12000
|
||||
minetest.set_node(vector.add(self._portal_pos, vector.new(3, 5, 3)), {name = mobs_mc.items.dragon_egg})
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue