From 85d5a34a3b0f995314f6718671c26184fe45c2cd Mon Sep 17 00:00:00 2001 From: Thomas--S Date: Thu, 29 Apr 2021 22:04:17 +0200 Subject: [PATCH] Fix copy&paste error in TA4 battery description --- icta_controller/battery.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icta_controller/battery.lua b/icta_controller/battery.lua index 4911a56..2d84c7d 100644 --- a/icta_controller/battery.lua +++ b/icta_controller/battery.lua @@ -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,