mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-21 06:43:17 -04:00
Update init.lua
This commit is contained in:
parent
7cd19d5795
commit
cfff19a4f1
1 changed files with 5 additions and 5 deletions
|
@ -13,13 +13,13 @@ local DAMAGE = true -- Enable / disable player damage loop.
|
||||||
local DAMMAX = 20 -- 20 -- Maximum damage. 20 = direct hit is fatal.
|
local DAMMAX = 20 -- 20 -- Maximum damage. 20 = direct hit is fatal.
|
||||||
|
|
||||||
local RADMIN = 3 -- 3 -- Minimum crater radius.
|
local RADMIN = 3 -- 3 -- Minimum crater radius.
|
||||||
local RADMAX = 31 -- 31 -- Maximum crater radius, on-gen craters are limited to 16.
|
local RADMAX = 16 -- 31 -- Maximum crater radius, on-gen craters are limited to 16.
|
||||||
local STOCHA = 5 -- 5 -- 1/x chance of stone boulders instead of gravel.
|
local STOCHA = 5 -- 5 -- 1/x chance of stone boulders instead of gravel.
|
||||||
|
|
||||||
local XMIN = -16000 -- Impact area dimensions. Impacts only inside this area.
|
local XMIN = -32000 -- Impact area dimensions. Impacts only inside this area.
|
||||||
local XMAX = 16000
|
local XMAX = 32000
|
||||||
local ZMIN = -16000
|
local ZMIN = -32000
|
||||||
local ZMAX = 16000
|
local ZMAX = 32000
|
||||||
|
|
||||||
local SAXMIN = 0 -- Safe area dimensions. No impacts inside this area.
|
local SAXMIN = 0 -- Safe area dimensions. No impacts inside this area.
|
||||||
local SAXMAX = 0 -- When overlapping impact area, the safe area overrides.
|
local SAXMAX = 0 -- When overlapping impact area, the safe area overrides.
|
||||||
|
|
Loading…
Add table
Reference in a new issue