summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
authorWuzzy <almikes@aol.com>2016-12-23 14:10:10 +0100
committerWuzzy <almikes@aol.com>2016-12-23 14:10:10 +0100
commit9396d84bbf41a5cccc8dbf6da4c80d61d5b69e6d (patch)
tree2ece02886db57b89787d373336b81775c58868df /init.lua
parent678428c58d7ebf0dd26b7f26797d3d641508eca1 (diff)
Mention item destruction by igniters
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/init.lua b/init.lua
index 5111ced..abfc9a6 100644
--- a/init.lua
+++ b/init.lua
@@ -186,6 +186,9 @@ local function f_fire(itemstring, def)
s = s .. "\n"
end
s = s .. S("This block will set flammable blocks within a radius of @1 on fire.", def.groups.igniter)
+ if def.walkable == false then
+ s = s .. S(" It also destroys flammable items which have been dropped inside.")
+ end
end
return s
end