summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/back.lua
diff options
context:
space:
mode:
Diffstat (limited to 'MCServer/Plugins/Core/back.lua')
-rw-r--r--MCServer/Plugins/Core/back.lua10
1 files changed, 0 insertions, 10 deletions
diff --git a/MCServer/Plugins/Core/back.lua b/MCServer/Plugins/Core/back.lua
deleted file mode 100644
index 201e0bb42..000000000
--- a/MCServer/Plugins/Core/back.lua
+++ /dev/null
@@ -1,10 +0,0 @@
-function HandleBackCommand( Split, Player )
- if BackCoords[Player:GetName()] == nil then
- SendMessageFailure(Player, "No known last position")
- return true
- else
- Player:TeleportToCoords(BackCoords[Player:GetName()].x, BackCoords[Player:GetName()].y, BackCoords[Player:GetName()].z)
- SendMessageSuccess(Player, "Teleported back to your last known position")
- end
- return true
-end