Skip to content

Commit

Permalink
Use AnyMana in Food Chain + Helga, Skittish Seer
Browse files Browse the repository at this point in the history
  • Loading branch information
Cguy7777 committed Sep 26, 2024
1 parent 53b9292 commit efcfe14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
6 changes: 1 addition & 5 deletions Mage.Sets/src/mage/cards/f/FoodChain.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,7 @@ public List<Mana> getNetMana(Game game, Ability source) {
}
}
if (cmc != -1) {
netMana.add(manaBuilder.setMana(Mana.BlackMana(cmc + 1), source, game).build());
netMana.add(manaBuilder.setMana(Mana.BlueMana(cmc + 1), source, game).build());
netMana.add(manaBuilder.setMana(Mana.RedMana(cmc + 1), source, game).build());
netMana.add(manaBuilder.setMana(Mana.GreenMana(cmc + 1), source, game).build());
netMana.add(manaBuilder.setMana(Mana.WhiteMana(cmc + 1), source, game).build());
netMana.add(manaBuilder.setMana(Mana.AnyMana(cmc + 1), source, game).build());
}
}
return netMana;
Expand Down
6 changes: 1 addition & 5 deletions Mage.Sets/src/mage/cards/h/HelgaSkittishSeer.java
Original file line number Diff line number Diff line change
Expand Up @@ -135,11 +135,7 @@ public List<Mana> getNetMana(Game game, Ability source) {
List<Mana> netMana = new ArrayList<>();
if (game != null){
int currentPower = power.calculate(game, source, this);
netMana.add(manaBuilder.setMana(Mana.BlackMana(currentPower), source, game).build());
netMana.add(manaBuilder.setMana(Mana.BlueMana(currentPower), source, game).build());
netMana.add(manaBuilder.setMana(Mana.RedMana(currentPower), source, game).build());
netMana.add(manaBuilder.setMana(Mana.GreenMana(currentPower), source, game).build());
netMana.add(manaBuilder.setMana(Mana.WhiteMana(currentPower), source, game).build());
netMana.add(manaBuilder.setMana(Mana.AnyMana(currentPower), source, game).build());
}
return netMana;
}
Expand Down

0 comments on commit efcfe14

Please sign in to comment.