forked from Mineclonia/Mineclonia
Fix Nether portal not teleporting players anymore
This commit is contained in:
parent
801e6fb1c4
commit
f68e835087
|
@ -404,7 +404,7 @@ minetest.register_abm({
|
|||
end
|
||||
-- teleport the object
|
||||
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
|
||||
end
|
||||
-- Prevent quick back-and-forth teleportation
|
||||
|
|
Loading…
Reference in New Issue