We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 45520e7 + 4bd9470 commit d14b071Copy full SHA for d14b071
lib/forcetrigger.lua
@@ -232,7 +232,10 @@ function Cryptid.forcetrigger(card, context)
232
ease_dollars(2)
233
end
234
if card.ability.name == "Supernova" then
235
- results = { jokers = { mult_mod = G.GAME.hands[context.scoring_name].played, card = card } }
+ local hand = context.other_context and context.other_context.scoring_name or context.scoring_name
236
+ if hand then
237
+ results = { jokers = { mult_mod = G.GAME.hands[hand].played, card = card } }
238
+ end
239
240
if card.ability.name == "Ride The Bus" then
241
card.ability.mult = card.ability.mult + card.ability.extra
0 commit comments