Skip to content

Commit

Permalink
setMana for each color
Browse files Browse the repository at this point in the history
  • Loading branch information
Cguy7777 committed Oct 1, 2024
1 parent 1bf9f6a commit 9ce40c5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Mage.Sets/src/mage/cards/s/SeanceBoard.java
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,11 @@ public List<Mana> getNetMana(Game game, Ability source) {
Permanent permanent = source.getSourcePermanentOrLKI(game);
if (permanent != null) {
int soulCounters = permanent.getCounters(game).getCount(CounterType.SOUL);
netMana.add(manaBuilder.setMana(Mana.AnyMana(soulCounters), source, game).build());
netMana.add(manaBuilder.setMana(Mana.BlackMana(soulCounters), source, game).build());
netMana.add(manaBuilder.setMana(Mana.BlueMana(soulCounters), source, game).build());
netMana.add(manaBuilder.setMana(Mana.RedMana(soulCounters), source, game).build());
netMana.add(manaBuilder.setMana(Mana.GreenMana(soulCounters), source, game).build());
netMana.add(manaBuilder.setMana(Mana.WhiteMana(soulCounters), source, game).build());
}
return netMana;
}
Expand Down

0 comments on commit 9ce40c5

Please sign in to comment.