From 2d0591b0134260b3aa0add67f291a1c325248b9b Mon Sep 17 00:00:00 2001 From: pawPatoes Date: Tue, 5 May 2026 22:06:09 +0400 Subject: [PATCH 1/2] Update config.lua --- config.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.lua b/config.lua index d1b745780..2cef7083e 100644 --- a/config.lua +++ b/config.lua @@ -10,5 +10,5 @@ return { ["experimental"] = false, -- experimental stuff ["force_tooltips"] = true, -- i don't actually know what this does ["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 } From e7471dbfecf81d0aadf6a8cfbdefc76350dd2e44 Mon Sep 17 00:00:00 2001 From: pawPatoes Date: Tue, 5 May 2026 22:11:56 +0400 Subject: [PATCH 2/2] Clarify config.lua options --- config.lua | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/config.lua b/config.lua index 2cef7083e..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, -- 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 +''' +]]