diff --git a/config.lua b/config.lua index d1b745780..c3d5d3b24 100644 --- a/config.lua +++ b/config.lua @@ -8,7 +8,21 @@ return { }, ["family_mode"] = false, -- removes f*ck ["experimental"] = false, -- experimental stuff - ["force_tooltips"] = true, -- i don't actually know what this does + ["force_tooltips"] = true, -- acivates lovely patch to always show the desc ["HTTPS"] = true, -- your internet connection - ["menu"] = true, -- i don't know what this does either + ["menu"] = true, -- 99% sure it makes the ace of spades in the menu glitched } +-- force tooltips: +--[[ +# Make description UI always appear if card is highlighted +[[patches]] +--[[ +[patches.pattern] +target = "engine/node.lua" +pattern = "if self.children.h_popup then" +position = 'at' +match_indent = true +payload = ''' +if self.children.h_popup and not (self.force_popup and self:force_popup() and Cryptid["force_tooltips"]) then +''' +]]