Skip to content

Commit ebe915a

Browse files
committed
fix for smods blind calc to merge
1 parent 7d15c8b commit ebe915a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/calculate.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,14 +478,15 @@ function SMODS.calculate_context(context, return_table)
478478
SMODS.trigger_effects(effects, _card)
479479
end
480480
end
481-
smcc(context, return_table)
481+
local ret = smcc(context, return_table)
482482
for k, v in pairs(SMODS.Events) do
483483
if G.GAME.events and G.GAME.events[k] then
484484
context.post_jokers = true
485485
v:calculate(context)
486486
context.post_jokers = nil
487487
end
488488
end
489+
return ret
489490
end
490491

491492
function Card:calculate_joker(context)

0 commit comments

Comments
 (0)