CountersNoteEffect.java - rollback the duct tape fix from last time

This commit is contained in:
Northmoc
2020-12-30 18:50:06 -05:00
parent 136c99377d
commit a35dbfdb70

View File

@@ -28,9 +28,9 @@ public class CountersNoteEffect extends SpellAbilityEffect {
GameEntityCounterTable table = new GameEntityCounterTable(); GameEntityCounterTable table = new GameEntityCounterTable();
for (Card c : getDefinedCardsOrTargeted(sa)) { for (Card c : getDefinedCardsOrTargeted(sa)) {
if (mode.equals(MODE_STORE)) { if (mode.equals(MODE_STORE)) {
noteCounters(c, c); noteCounters(c, source);
} else if (mode.equals(MODE_LOAD)) { } else if (mode.equals(MODE_LOAD)) {
loadCounters(c, c, p, table); loadCounters(c, source, p, table);
} }
} }
table.triggerCountersPutAll(game); table.triggerCountersPutAll(game);