Fix End portal crash

This commit is contained in:
Wuzzy 2017-08-17 16:03:26 +02:00
parent 3318c2f5f3
commit 6dbd120397
1 changed files with 3 additions and 1 deletions

View File

@ -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