summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua6
1 files changed, 4 insertions, 2 deletions
diff --git a/init.lua b/init.lua
index 4dd5d92..bc80fe8 100644
--- a/init.lua
+++ b/init.lua
@@ -77,7 +77,9 @@ function landrush.get_chunk(pos)
-- 3 levels of vertical protection
local y = 0
- if ( pos.y < -60 ) then
+ if ( pos.y < -200 ) then
+ y = -32000
+ elseif ( pos.y < -60 ) then
y = -200
elseif ( pos.y < 140 ) then
y = -30
@@ -381,7 +383,7 @@ minetest.after(0, function ()
dofile(path.."/default.lua")
dofile(path.."/bucket.lua")
-dofile(path.."/doors.lua")
+--dofile(path.."/doors.lua")
dofile(path.."/fire.lua")
dofile(path.."/chatcommands.lua")