1
0
cuberite-2a/MCServer/Plugins/Core/top.lua
2012-08-20 12:20:20 +00:00

11 lines
340 B
Lua

function HandleTopCommand( Split, Player )
local World = Player:GetWorld()
local PlayerPos = Player:GetPosition()
local Height = World:GetHeight( math.floor(PlayerPos.x), math.floor(PlayerPos.z) )
Player:TeleportTo( PlayerPos.x, Height+1, PlayerPos.z )
Player:SendMessage("Teleported to the top block")
return true
end