9 lines
200 B
Lua
9 lines
200 B
Lua
|
minetest.register_abm({ -- going up
|
||
|
func = function(pos)
|
||
|
-- check for player 1 node away
|
||
|
-- if player is owner, transport
|
||
|
-- else, check for free-for-all node
|
||
|
-- if active, transport
|
||
|
end
|
||
|
})
|