summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/spawn.lua
diff options
context:
space:
mode:
Diffstat (limited to 'MCServer/Plugins/Core/spawn.lua')
-rw-r--r--MCServer/Plugins/Core/spawn.lua6
1 files changed, 4 insertions, 2 deletions
diff --git a/MCServer/Plugins/Core/spawn.lua b/MCServer/Plugins/Core/spawn.lua
index d1ef7399b..120c241fc 100644
--- a/MCServer/Plugins/Core/spawn.lua
+++ b/MCServer/Plugins/Core/spawn.lua
@@ -1,7 +1,9 @@
function HandleSpawnCommand(Split, Player)
+
World = Player:GetWorld()
SetBackCoordinates(Player)
Player:TeleportToCoords(World:GetSpawnX(), World:GetSpawnY(), World:GetSpawnZ())
- Player:SendMessage(cChatColor.Green .. "[INFO] " .. cChatColor.White .. "Returned to world spawn" )
+ SendMessageSuccess( Player, "Returned to world spawn" )
return true
-end \ No newline at end of file
+
+end