mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-03-15 12:21:24 +00:00
Default/functions: Tune speed of grass spread ABM
Through testing the chance is changed to 50 such that grass spread speed matches that of the previous (0.4.13) ABM version.
This commit is contained in:
parent
1799754a8f
commit
1906ab84f5
1 changed files with 1 additions and 1 deletions
|
@ -354,7 +354,7 @@ minetest.register_abm({
|
|||
"default:snow",
|
||||
},
|
||||
interval = 6,
|
||||
chance = 67,
|
||||
chance = 50,
|
||||
catch_up = false,
|
||||
action = function(pos, node)
|
||||
-- Check for darkness: night, shadow or under a light-blocking node
|
||||
|
|
Loading…
Add table
Reference in a new issue