File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -1981,7 +1981,6 @@ local clockwork = { -- Steel Support: The Joker
19811981 if card .ability .counters .c2 >= 2 then
19821982 card .ability .counters .c2 = 0
19831983 card .ability .extra .xmult = card .ability .extra .xmult + card .ability .extra .xmult_mod
1984- return { message = " Upgrade!" }
19851984 else
19861985 card .ability .counters .c2 = card .ability .counters .c2 + 1
19871986 end
@@ -1993,10 +1992,12 @@ local clockwork = { -- Steel Support: The Joker
19931992 if card .ability .counters .c4 >= 6 then
19941993 card .ability .counters .c4 = 0
19951994 card .ability .extra .steelenhc = card .ability .extra .steelenhc + card .ability .extra .steel_mod
1996- return { message = " Upgrade!" }
19971995 else
19981996 card .ability .counters .c4 = card .ability .counters .c4 + 1
19991997 end
1998+ if card .ability .counters .c2 == 0 or card .ability .counters .c4 == 0 then
1999+ return { message = " Upgrade!" } -- bweeehh
2000+ end
20002001 end
20012002 if context .repetition and context .cardarea == G .play and card .ability .counters .c1 == 0 then -- effect 1
20022003 if context .other_card .ability .effect == " Steel Card" then
You can’t perform that action at this time.
0 commit comments