summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/worldlimiter.lua
diff options
context:
space:
mode:
authorAlexander Harkness <bearbin@gmail.com>2013-07-31 18:10:59 +0200
committerAlexander Harkness <bearbin@gmail.com>2013-07-31 18:10:59 +0200
commit8ced99994bb654b935e5f858e1f13327ea7381fc (patch)
treeea716c9304b59a1dc37963f9e04f3081605f3daf /MCServer/Plugins/Core/worldlimiter.lua
parentMerge branch 'master' of github.com:tigerw/MCServer into tigerw-master (diff)
downloadcuberite-8ced99994bb654b935e5f858e1f13327ea7381fc.tar
cuberite-8ced99994bb654b935e5f858e1f13327ea7381fc.tar.gz
cuberite-8ced99994bb654b935e5f858e1f13327ea7381fc.tar.bz2
cuberite-8ced99994bb654b935e5f858e1f13327ea7381fc.tar.lz
cuberite-8ced99994bb654b935e5f858e1f13327ea7381fc.tar.xz
cuberite-8ced99994bb654b935e5f858e1f13327ea7381fc.tar.zst
cuberite-8ced99994bb654b935e5f858e1f13327ea7381fc.zip
Diffstat (limited to '')
-rw-r--r--MCServer/Plugins/Core/worldlimiter.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/MCServer/Plugins/Core/worldlimiter.lua b/MCServer/Plugins/Core/worldlimiter.lua
index 8bd9b5509..8fd3287b2 100644
--- a/MCServer/Plugins/Core/worldlimiter.lua
+++ b/MCServer/Plugins/Core/worldlimiter.lua
@@ -1,5 +1,6 @@
function OnPlayerMoving( Player )
- if LimitWorld == true then
+ LimitWorldWidth = WorldsWorldLimit[Player:GetWorld():GetName()]
+ if LimitWorldWidth > 0 then
local World = Player:GetWorld()
local SpawnX = math.floor(World:GetSpawnX() / 16)
local SpawnZ = math.floor(World:GetSpawnZ() / 16)