Merge pull request #56 from Thomas--S/battery-description-typo

Fix copy&paste error in TA4 battery description
This commit is contained in:
Joachim Stolberg 2021-04-30 19:02:20 +02:00 committed by GitHub
commit 6c050908f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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