Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fire: Speed up fire spread and burn out
  • Loading branch information
paramat committed Mar 21, 2016
1 parent da0cc7f commit 537f94c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mods/fire/init.lua
Expand Up @@ -231,7 +231,7 @@ else
nodenames = {"group:flammable"},
neighbors = {"group:igniter"},
interval = 7,
chance = 16,
chance = 12,
catch_up = false,
action = function(p0, node, _, _)
-- If there is water or stuff like that around node, don't ignite
Expand All @@ -250,7 +250,7 @@ else
minetest.register_abm({
nodenames = {"fire:basic_flame"},
interval = 5,
chance = 16,
chance = 6,
catch_up = false,
action = function(p0, node, _, _)
-- If there are no flammable nodes around flame, remove flame
Expand Down

0 comments on commit 537f94c

Please sign in to comment.