From 5af124d732c74f8f7e086235daa4dbcf228703c8 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Fri, 31 Jul 2020 10:43:42 +0200 Subject: [PATCH] Tweak potion tooltips --- mods/ITEMS/mcl_potions/potions.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mods/ITEMS/mcl_potions/potions.lua b/mods/ITEMS/mcl_potions/potions.lua index 227abd042..c82d4ef1d 100644 --- a/mods/ITEMS/mcl_potions/potions.lua +++ b/mods/ITEMS/mcl_potions/potions.lua @@ -66,10 +66,10 @@ local function register_potion(def) if effect and def.is_dur then _tt = perc_string(effect).." | "..time_string(dur) if def.name == "poison" or def.name == "regeneration" then - _tt = "1/2 Heart/"..effect.."sec | "..time_string(dur) + _tt = "1/2 heart/"..effect.."s | "..time_string(dur) end elseif def.name == "healing" or def.name == "harming" then - _tt = (effect / 2).." Hearts" + _tt = (effect / 2).." hearts" else _tt = tt or time_string(dur) or S("No effect") end @@ -368,8 +368,8 @@ local dragon_breath_def = { local healing_def = { name = "healing", description = S("Healing"), - _tt = S("+2 Hearts"), - _tt_2 = S("+4 Hearts"), + _tt = S("+2 hearts"), + _tt_2 = S("+4 hearts"), _longdesc = S("Drink to heal yourself"), color = "#CC0000", effect = 4, @@ -381,8 +381,8 @@ local healing_def = { local harming_def = { name = "harming", description = S("Harming"), - _tt = S("-3 Hearts"), - _tt_II = S("-6 Hearts"), + _tt = S("-3 hearts"), + _tt_II = S("-6 hearts"), _longdesc = S("Drink to heal yourself"), color = "#660099", effect = -6,