forked from VoxeLibre/VoxeLibre
Fix Nether portal not teleporting players anymore
This commit is contained in:
parent
801e6fb1c4
commit
f68e835087
|
@ -404,7 +404,7 @@ minetest.register_abm({
|
||||||
end
|
end
|
||||||
-- teleport the object
|
-- teleport the object
|
||||||
minetest.after(3, function(obj, pos, target)
|
minetest.after(3, function(obj, pos, target)
|
||||||
if not obj:get_luaentity() then
|
if (not obj:get_luaentity()) and (not obj:is_player()) then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
-- Prevent quick back-and-forth teleportation
|
-- Prevent quick back-and-forth teleportation
|
||||||
|
|
Loading…
Reference in New Issue