Skip to content

Commit

Permalink
Fire: Higher chance of removing flammable nodes
Browse files Browse the repository at this point in the history
Flammable nodes burn away quicker
  • Loading branch information
paramat committed Apr 19, 2016
1 parent ab7b7c7 commit e426f64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mods/fire/init.lua
Expand Up @@ -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]
Expand Down

0 comments on commit e426f64

Please sign in to comment.