From 0a5cb628c54e03f6f7884c18d97d3be3b0cb073e Mon Sep 17 00:00:00 2001 From: Brandon Date: Sat, 1 Aug 2020 08:42:31 -0400 Subject: [PATCH] make lowercase to conform to Wuzzy's previous commit. --- mods/ITEMS/mcl_potions/potions.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ITEMS/mcl_potions/potions.lua b/mods/ITEMS/mcl_potions/potions.lua index ef041442..e1628a0a 100644 --- a/mods/ITEMS/mcl_potions/potions.lua +++ b/mods/ITEMS/mcl_potions/potions.lua @@ -70,7 +70,7 @@ local function register_potion(def) _tt = "1/2 heart/"..effect.."s | "..time_string(dur) end elseif def.name == "healing" or def.name == "harming" then - _tt = ((effect / 2) - ((effect / 2)% 0.5)).." Hearts" + _tt = ((effect / 2) - ((effect / 2)% 0.5)).." hearts" else _tt = tt or time_string(dur) or S("No effect") end