Fix copy&paste error in TA4 battery description

This commit is contained in:
Thomas--S 2021-04-29 22:04:17 +02:00
parent d89b83ce18
commit 85d5a34a3b

View File

@ -94,7 +94,7 @@ minetest.register_node("techage:ta4_battery", {
local meta = drops[1]:get_meta() local meta = drops[1]:get_meta()
meta:set_int("content", content) meta:set_int("content", content)
local percent = calc_percent(content) local percent = calc_percent(content)
local text = S("Digtron Battery").." ("..percent.." %)" local text = S("Battery").." ("..percent.." %)"
meta:set_string("description", text) meta:set_string("description", text)
end, end,