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/misc.toml
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -671,3 +671,17 @@ pattern = """limit = limit - 1 + (not card.debuff and card.edition and card.edit
671
671
position = "at"
672
672
payload = """limit = limit - 1 + (card.edition and card.edition.card_limit or 0)"""
673
673
match_indent = true
674
+
675
+
676
+
#This fixes a double-sided green seal cards crashing the game while trying to open "View deck" while flipped inside the random deck selection in a booster pack
677
+
[[patches]]
678
+
[patches.pattern]
679
+
target = "functions/common_events.lua"
680
+
pattern = "for k, v in pairs(other.ability.seal or {}) do"
681
+
position = "at"
682
+
payload = '''
683
+
local safe_seal = type(other.ability.seal) == "table" and other.ability.seal or {}
0 commit comments