Fire: Higher chance of removing flammable nodes

Flammable nodes burn away quicker
This commit is contained in:
paramat 2016-04-06 19:43:54 +01:00
parent ab7b7c7504
commit e426f64993
1 changed files with 1 additions and 1 deletions

View File

@ -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]