Skip to content

Commit d14b071

Browse files
committed
2 parents 45520e7 + 4bd9470 commit d14b071

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lib/forcetrigger.lua

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,10 @@ function Cryptid.forcetrigger(card, context)
232232
ease_dollars(2)
233233
end
234234
if card.ability.name == "Supernova" then
235-
results = { jokers = { mult_mod = G.GAME.hands[context.scoring_name].played, card = card } }
235+
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
236239
end
237240
if card.ability.name == "Ride The Bus" then
238241
card.ability.mult = card.ability.mult + card.ability.extra

0 commit comments

Comments
 (0)