Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if yall dont want this here its ok but i left it in for clarity

--[[
# 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
'''
]]