More anvil smashing fixes

This commit is contained in:
Wuzzy 2018-02-05 19:11:04 +01:00
parent c71bd9588d
commit e4a1134d4f
2 changed files with 13 additions and 4 deletions

View file

@ -162,7 +162,7 @@ end)
doc.sub.items.register_factoid("nodes", "gravity", function(itemstring, def)
local s = ""
if minetest.get_item_group(itemstring, "crush_after_fall") == 1 then
s = s .. "When this block falls deeper than 1 block, it causes damage to anything it hits. The damage dealt is B×22 hit points with B = number of blocks fallen. The damage can never be more than 40 HP."
s = s .. "When this block falls deeper than 1 block, it causes damage to any player it hits. The damage dealt is B×22 hit points with B = number of blocks fallen. The damage can never be more than 40 HP."
end
return s
end)