Revert "Remove descritption from injury/burn."

This reverts commit 4a13733e68903904e088fe21d86dec6d927ee7d8.

While I'm still not happy with the desciptions, we probably need
some sensible way to talk about these in chat, wikis, etc.
This commit is contained in:
Aaron Suen 2020-03-25 08:58:31 -04:00
parent c62dc70194
commit dfa8615200
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ local modname = minetest.get_current_modname()
local irradiated = modname .. ":irradiated"
nodecore.register_virtual_item(irradiated, {
description = "",
description = "Burn",
inventory_image = modname .. "_base.png^[mask:"
.. modname .. "_icon_mask.png",
})

View File

@ -7,7 +7,7 @@ local modname = minetest.get_current_modname()
local injured = modname .. ":injured"
nodecore.register_virtual_item(injured, {
description = "",
description = "Injury",
inventory_image = modname .. "_injured.png"
})