Performance improvement

This commit is contained in:
anarquimico 2023-03-02 09:20:00 -03:00
parent 8825fb9860
commit 5093f31f28
1 changed files with 10 additions and 8 deletions

View File

@ -447,6 +447,7 @@ mcl_mobs.register_mob("mobs_mc:enderman", {
-- ATTACK ENDERMITE
local enderpos = self.object:get_pos()
if math.random(1,20) == 1 then
local mobsnear = minetest.get_objects_inside_radius(enderpos, 64)
for n=1, #mobsnear do
local mob = mobsnear[n]
@ -458,6 +459,7 @@ mcl_mobs.register_mob("mobs_mc:enderman", {
end
end
end
end
-- TAKE AND PLACE STUFF BEHAVIOUR BELOW.
if not mobs_griefing then