Fix crash when obj tele's Nether→Overworld @ rain

This commit is contained in:
Wuzzy 2018-01-26 19:37:00 +01:00
parent 58b9c3dbf5
commit c2d0414255
3 changed files with 3 additions and 2 deletions

View file

@ -434,8 +434,8 @@ minetest.register_abm({
-- Teleport
obj:set_pos(target)
mcl_worlds.dimension_change(obj, mcl_worlds.pos_to_dimension(target))
if obj:is_player() then
mcl_worlds.dimension_change(obj, mcl_worlds.pos_to_dimension(target))
minetest.sound_play("mcl_portals_teleport", {pos=target, gain=0.5, max_hear_distance = 16})
end