summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/functions.lua
diff options
context:
space:
mode:
Diffstat (limited to 'MCServer/Plugins/Core/functions.lua')
-rw-r--r--MCServer/Plugins/Core/functions.lua4
1 files changed, 1 insertions, 3 deletions
diff --git a/MCServer/Plugins/Core/functions.lua b/MCServer/Plugins/Core/functions.lua
index 6d82d2253..36fb3786f 100644
--- a/MCServer/Plugins/Core/functions.lua
+++ b/MCServer/Plugins/Core/functions.lua
@@ -1,5 +1,3 @@
function SetBackCoordinates( Player )
- X[Player:GetName()] = Player:GetPosX()
- Y[Player:GetName()] = Player:GetPosY()
- Z[Player:GetName()] = Player:GetPosZ()
+ BackCoords[Player:GetName()] = Vector3i( Player:GetPosX(), Player:GetPosY(), Player:GetPosZ() )
end \ No newline at end of file