From: paramat Date: Wed, 6 Apr 2016 18:43:54 +0000 (+0100) Subject: Fire: Higher chance of removing flammable nodes X-Git-Tag: 0.4.14~25 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e426f64993e4d7e19c7e752b25faba3dd9d2bc91;p=oweals%2Fminetest_game.git Fire: Higher chance of removing flammable nodes Flammable nodes burn away quicker --- diff --git a/mods/fire/init.lua b/mods/fire/init.lua index 15f71560..457f6b5e 100644 --- a/mods/fire/init.lua +++ b/mods/fire/init.lua @@ -263,7 +263,7 @@ else minetest.remove_node(p0) return end - if math.random(1, 4) == 1 then + if math.random(1, 3) == 1 then -- remove flammable nodes around flame local node = minetest.get_node(p) local def = minetest.registered_nodes[node.name]