mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 02:52:02 -08:00
* Fixed bug that caused some tests to fail introduced with 67dd45c1c7.
This commit is contained in:
parent
e95b9f145c
commit
cbc1c02cde
1 changed files with 1 additions and 1 deletions
|
|
@ -94,7 +94,7 @@ public class ManaOptions extends ArrayList<Mana> {
|
||||||
this.clear();
|
this.clear();
|
||||||
for (Mana netMana : netManas) {
|
for (Mana netMana : netManas) {
|
||||||
for (Mana mana : copy) {
|
for (Mana mana : copy) {
|
||||||
if (ability.hasTapCost() || checkManaReplacementAndTriggeredMana(ability, game, netMana)) {
|
if (!ability.hasTapCost() || checkManaReplacementAndTriggeredMana(ability, game, netMana)) {
|
||||||
Mana newMana = new Mana();
|
Mana newMana = new Mana();
|
||||||
newMana.add(mana);
|
newMana.add(mana);
|
||||||
newMana.add(netMana);
|
newMana.add(netMana);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue