You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lovely.toml
+19-16Lines changed: 19 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -53,24 +53,27 @@ match_indent = true
53
53
target = "functions/common_events.lua"
54
54
pattern = "local info_queue = {}"
55
55
position = "after"
56
-
payload = '''if not (SMODS.Mods["Cryptid"] or {}).can_load and _c.cry_disabled or (_c.force_gameset and _c.force_gameset == 'disabled') then
57
-
if _c.cry_disabled then
58
-
if _c.cry_disabled.type == "card_dependency" then
59
-
local name = Cryptid.get_center(_c.cry_disabled.key) and localize{type = 'name_text', set = Cryptid.get_center(_c.cry_disabled.key).set, key = _c.cry_disabled.key} or _c.cry_disabled.key
if not (_c.force_gameset and _c.force_gameset ~= 'disabled') then
69
-
info_queue[#info_queue+1] = {key = 'disabled', set = 'Other'}
56
+
payload = '''
57
+
if not (SMODS.Mods["Cryptid"] or {}).can_load then
58
+
if _c.cry_disabled or (_c.force_gameset and _c.force_gameset == 'disabled') then
59
+
if _c.cry_disabled then
60
+
if _c.cry_disabled.type == "card_dependency" then
61
+
local name = Cryptid.get_center(_c.cry_disabled.key) and localize{type = 'name_text', set = Cryptid.get_center(_c.cry_disabled.key).set, key = _c.cry_disabled.key} or _c.cry_disabled.key
0 commit comments