forked from VoxeLibre/VoxeLibre
Fix End portal crash
This commit is contained in:
parent
3318c2f5f3
commit
6dbd120397
|
@ -339,10 +339,12 @@ minetest.register_abm({
|
|||
-- teleport the player
|
||||
minetest.after(3, function(obj, pos, target3)
|
||||
local objpos = obj:getpos()
|
||||
if objpos == nil then
|
||||
return
|
||||
end
|
||||
-- If player stands, player is at ca. something+0.5
|
||||
-- which might cause precision problems, so we used ceil.
|
||||
objpos.y = math.ceil(objpos.y)
|
||||
if objpos == nil then return end --maikerumine added for objects to travel
|
||||
if minetest.get_node(objpos).name ~= "mcl_portals:portal_end" then
|
||||
return
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue