summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
authorBrandon <brandon@bremaweb.com>2013-08-06 21:44:00 -0500
committerBrandon <brandon@bremaweb.com>2013-08-06 21:44:00 -0500
commit565b5a4d3b7d08fa9298b4dbbe8874df0b281729 (patch)
treeaa91800c7ad6ba9e198a2e6318f8ac983a0049fe /init.lua
parentf1ef00552933aa90b1499d2ecc7ff4d4b7c1f6af (diff)
shareall and unshareall commands to (un)share all of a persons claims
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")