diff options
author | Brandon <brandon@bremaweb.com> | 2013-08-06 21:44:00 -0500 |
---|---|---|
committer | Brandon <brandon@bremaweb.com> | 2013-08-06 21:44:00 -0500 |
commit | 565b5a4d3b7d08fa9298b4dbbe8874df0b281729 (patch) | |
tree | aa91800c7ad6ba9e198a2e6318f8ac983a0049fe /init.lua | |
parent | f1ef00552933aa90b1499d2ecc7ff4d4b7c1f6af (diff) |
shareall and unshareall commands to (un)share all of a persons claims
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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") |