Skip to content

Commit 069d13c

Browse files
authored
fix empowered pack + showman
1 parent 6ab5df2 commit 069d13c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

items/tag.lua

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -197,11 +197,10 @@ local empoweredPack = {
197197
if
198198
i % 2 == 1
199199
and Cryptid.enabled("c_cry_gateway") == true
200-
and not G.GAME.used_jokers["c_cry_gateway"]
201-
and not next(find_joker("Showman"))
200+
and not ( G.GAME.used_jokers["c_cry_gateway"] and not next(find_joker("Showman")) )
202201
then
203202
return create_card("Spectral", G.pack_cards, nil, nil, true, true, "c_cry_gateway")
204-
elseif not G.GAME.used_jokers["c_soul"] and not next(find_joker("Showman")) then
203+
elseif not ( G.GAME.used_jokers["c_soul"] and not next(find_joker("Showman")) ) then
205204
return create_card("Spectral", G.pack_cards, nil, nil, true, true, "c_soul")
206205
else
207206
return create_card("Spectral", G.pack_cards, nil, nil, true, true)

0 commit comments

Comments
 (0)