1
0

Added the new core as a subtree.

This commit is contained in:
Alexander Harkness
2013-07-27 16:16:04 +01:00
parent aa64450421
commit 0623a4f9be
40 changed files with 3530 additions and 0 deletions

7
Core/spawn.lua Normal file
View File

@@ -0,0 +1,7 @@
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