1
0
cuberite-2a/MCServer/Plugins/Core/spawn.lua
2013-07-27 16:24:03 +01:00

7 lines
248 B
Lua

function HandleSpawnCommand(Split, Player)
World = Player:GetWorld()
SetBackCoordinates(Player)
Player:TeleportToCoords(World:GetSpawnX(), World:GetSpawnY(), World:GetSpawnZ())
LOGINFO(Player:GetName() .. " returned to spawn.")
return true
end