File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -1036,7 +1036,8 @@ function Cryptid.get_circus_description()
10361036 local desc = {}
10371037 local ind = 1
10381038 local extra_rarities = {}
1039- for i , v in pairs (Cryptid .circus_rarities or {}) do
1039+ if not Cryptid .circus_rarities then Cryptid .circus_rarities = {} end
1040+ for i , v in pairs (Cryptid .circus_rarities ) do
10401041 if not v .hidden then
10411042 extra_rarities [# extra_rarities + 1 ] = v
10421043 end
Original file line number Diff line number Diff line change 171171'''
172172position = " after"
173173payload = '''
174- SMODS.calculate_context{cry_creating_card = true, card = card}
174+ if G.deck then
175+ SMODS.calculate_context{cry_creating_card = true, card = card}
176+ end
175177'''
176178match_indent = true
177179
You can’t perform that action at this time.
0 commit comments