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())