Fix enderman behaviour for other dimesions

This commit is contained in:
anarquimico 2023-03-02 10:22:08 -03:00
parent 16a4448c5f
commit 7cbeae00cc
1 changed files with 1 additions and 1 deletions

View File

@ -314,7 +314,7 @@ mcl_mobs.register_mob("mobs_mc:enderman", {
-- RAIN DAMAGE / EVASIVE WARP BEHAVIOUR HERE.
local enderpos = self.object:get_pos()
local dim = mcl_worlds.pos_to_dimension(enderpos)
if dim == "overworld" then
if dim then
if mcl_weather.state == "rain" or mcl_weather.state == "lightning" then
local damage = true
local enderpos = self.object:get_pos()