forked from VoxeLibre/VoxeLibre
Fix enderman behaviour for other dimesions
This commit is contained in:
parent
16a4448c5f
commit
7cbeae00cc
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue