Add blast resistance factoid

This commit is contained in:
Wuzzy 2017-06-05 22:20:27 +02:00
parent daf89c0b52
commit 8418013c04
1 changed files with 7 additions and 0 deletions

View File

@ -162,6 +162,13 @@ doc.sub.items.register_factoid("nodes", "mining", function(itemstring, def)
else
datastring = datastring .. string.format("Hardness: %.2f", hardness)
end
local blast = def._mcl_blast_resistance
if not blast then
blast = 0
end
if blast >= 1000 then
datastring = datastring .. "\n" .. "This block will not be destroyed by TNT explosions."
end
return datastring
end)