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.
1 parent 3c7a89a commit 49583baCopy full SHA for 49583ba
items/deck.lua
@@ -598,7 +598,12 @@ local antimatter = {
598
if G.P_CENTERS[v] then
599
G.GAME.used_vouchers[v] = true
600
G.GAME.starting_voucher_count = (G.GAME.starting_voucher_count or 0) + 1
601
- Card.apply_to_run(nil, G.P_CENTERS[v])
+ G.E_MANAGER:add_event(Event({
602
+ func = function()
603
+ Card.apply_to_run(nil, G.P_CENTERS[v])
604
+ return true
605
+ end,
606
+ }))
607
end
608
609
0 commit comments