Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 1 addition & 7 deletions content/deck/proud.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,7 @@ if PB_UTIL.config.suits_enabled then
},
unlocked = false,
check_for_unlock = function(self, args)
if args.type == 'hand_contents' then
local eval = evaluate_poker_hand(args.cards)
if next(eval['paperback_Spectrum']) then
return true
end
end
return false
return PB_UTIL.spectrum_played()
end,
}
end
8 changes: 1 addition & 7 deletions content/joker/pride_flag.lua
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,7 @@ if PB_UTIL.config.suits_enabled then
end,

check_for_unlock = function(self, args)
if args.type == 'hand_contents' then
local eval = evaluate_poker_hand(args.cards)
if next(eval['paperback_Spectrum']) then
return true
end
end
return false
return PB_UTIL.spectrum_played()
end,
locked_loc_vars = function(self, info_queue, card)
return { key = "j_paperback_pride_flag_spectrums" }
Expand Down