summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/worldlimiter.lua
diff options
context:
space:
mode:
Diffstat (limited to 'MCServer/Plugins/Core/worldlimiter.lua')
-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)