mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2024-11-04 14:53:51 +01:00
Fix crash when night_vision tries to apply to a mob.
This commit is contained in:
parent
8453dac1db
commit
2f6afe34ba
@ -838,7 +838,13 @@ function mcl_potions.night_vision_func(player, null, duration)
|
||||
victim.timer = 0
|
||||
|
||||
end
|
||||
meta:set_int("night_vision", 1)
|
||||
|
||||
is_player = player:is_player()
|
||||
if is_player then
|
||||
meta:set_int("night_vision", 1)
|
||||
else
|
||||
return -- Do not attempt to set night_vision on mobs
|
||||
end
|
||||
mcl_weather.skycolor.update_sky_color({player})
|
||||
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user