summaryrefslogtreecommitdiffstats
path: root/Core/worldlimiter.lua
diff options
context:
space:
mode:
authorAlexander Harkness <bearbin@gmail.com>2013-07-27 17:22:27 +0200
committerAlexander Harkness <bearbin@gmail.com>2013-07-27 17:22:27 +0200
commit66e837ecbc08ece3150a364976db87f56813d30b (patch)
tree1593ac9b849f3416aafa70c440694200c62e6b2c /Core/worldlimiter.lua
parentAdded the new core as a subtree. (diff)
downloadcuberite-66e837ecbc08ece3150a364976db87f56813d30b.tar
cuberite-66e837ecbc08ece3150a364976db87f56813d30b.tar.gz
cuberite-66e837ecbc08ece3150a364976db87f56813d30b.tar.bz2
cuberite-66e837ecbc08ece3150a364976db87f56813d30b.tar.lz
cuberite-66e837ecbc08ece3150a364976db87f56813d30b.tar.xz
cuberite-66e837ecbc08ece3150a364976db87f56813d30b.tar.zst
cuberite-66e837ecbc08ece3150a364976db87f56813d30b.zip
Diffstat (limited to 'Core/worldlimiter.lua')
-rw-r--r--Core/worldlimiter.lua21
1 files changed, 0 insertions, 21 deletions
diff --git a/Core/worldlimiter.lua b/Core/worldlimiter.lua
deleted file mode 100644
index 8bd9b5509..000000000
--- a/Core/worldlimiter.lua
+++ /dev/null
@@ -1,21 +0,0 @@
-function OnPlayerMoving( Player )
- if LimitWorld == true then
- local World = Player:GetWorld()
- local SpawnX = math.floor(World:GetSpawnX() / 16)
- local SpawnZ = math.floor(World:GetSpawnZ() / 16)
- local X = math.floor(Player:GetPosX() / 16)
- local Z = math.floor(Player:GetPosZ() / 16)
- if ( (SpawnX + LimitWorldWidth - 1) < X ) then
- Player:TeleportToCoords(Player:GetPosX() - 1, Player:GetPosY(), Player:GetPosZ())
- end
- if ( (SpawnX - LimitWorldWidth + 1) > X ) then
- Player:TeleportToCoords(Player:GetPosX() + 1, Player:GetPosY(), Player:GetPosZ())
- end
- if ( (SpawnZ + LimitWorldWidth - 1) < Z ) then
- Player:TeleportToCoords(Player:GetPosX(), Player:GetPosY(), Player:GetPosZ() - 1)
- end
- if ( (SpawnZ - LimitWorldWidth + 1) > Z ) then
- Player:TeleportToCoords(Player:GetPosX(), Player:GetPosY(), Player:GetPosZ() + 1)
- end
- end
-end \ No newline at end of file