Skip to content

Commit e426f64

Browse files
committedApr 19, 2016
Fire: Higher chance of removing flammable nodes
Flammable nodes burn away quicker
1 parent ab7b7c7 commit e426f64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎mods/fire/init.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ else
263263
minetest.remove_node(p0)
264264
return
265265
end
266-
if math.random(1, 4) == 1 then
266+
if math.random(1, 3) == 1 then
267267
-- remove flammable nodes around flame
268268
local node = minetest.get_node(p)
269269
local def = minetest.registered_nodes[node.name]

0 commit comments

Comments
 (0)
Please sign in to comment.