diff options
author | PilzAdam <pilzadam@minetest.net> | 2013-06-08 23:42:46 +0000 |
---|---|---|
committer | PilzAdam <pilzadam@minetest.net> | 2013-06-20 22:31:46 +0000 |
commit | b1ebd9f79c63cf78b0e0fb2ea6f52d82cdfb95b6 (patch) | |
tree | bdff6e0aea32c0c7478872ad83f35cd0c6d54731 /minetest.conf.example | |
parent | c2cdaceed0d43317d8e8d431052854fe72d8fddf (diff) | |
download | minetest-b1ebd9f79c63cf78b0e0fb2ea6f52d82cdfb95b6.tar.gz minetest-b1ebd9f79c63cf78b0e0fb2ea6f52d82cdfb95b6.tar.bz2 minetest-b1ebd9f79c63cf78b0e0fb2ea6f52d82cdfb95b6.zip |
Add a setting for max loop count per step in liquid update
Diffstat (limited to 'minetest.conf.example')
-rw-r--r-- | minetest.conf.example | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/minetest.conf.example b/minetest.conf.example index 4fd443db7..4306740e9 100644 --- a/minetest.conf.example +++ b/minetest.conf.example @@ -93,11 +93,17 @@ #new_style_water = false # Constant volume liquids #liquid_finite = false +# Max liquids processed per step +#liquid_loop_max = 1000 # Update liquids every .. recommend for finite: 0.2 #liquid_update = 1.0 -# When finite liquid: relax flowing blocks to source if level near max and N nearby source blocks, more realistic, but not true constant. values: 0,1,2,3,4 : 0 - disable, 1 - most aggresive +# Relax flowing blocks to source if level near max and N nearby +# source blocks, more realistic, but not true constant. +# values: 0,1,2,3,4 : 0 - disable, 1 - most aggresive +# (for finite liquids) #liquid_relax = 2 # Optimization: faster cave flood (and not true constant) +# (for finite liquids) #liquid_fast_flood = 1 # Underground water and lava springs, its infnity sources if liquid_finite enabled #underground_springs = 1 |