From 03c73b7820c12a6e55325b33568766e191a5acd5 Mon Sep 17 00:00:00 2001 From: the-real-herowl Date: Mon, 22 Jan 2024 22:12:13 +0100 Subject: [PATCH] Improved descriptions --- mods/ITEMS/mcl_potions/functions.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/ITEMS/mcl_potions/functions.lua b/mods/ITEMS/mcl_potions/functions.lua index 27d07cff5..b2d44432b 100644 --- a/mods/ITEMS/mcl_potions/functions.lua +++ b/mods/ITEMS/mcl_potions/functions.lua @@ -410,7 +410,7 @@ mcl_potions.register_effect({ name = "darkness", description = S("Darkness"), get_tt = function(factor) - return S("surrounded by darkness") + return S("surrounded by darkness\nnot seeing anything beyond @1 nodes", factor) end, res_condition = function(object) return (not object:is_player()) @@ -681,7 +681,7 @@ mcl_potions.register_effect({ name = "nausea", description = S("Nausea"), get_tt = function(factor) - return S("not feeling very well...") + return S("not feeling very well...\nfrequency: @1 / 1 s", factor) end, res_condition = function(object) return (not object:is_player())