mirror of
https://github.com/Relintai/mtg-forge-ios.git
synced 2024-11-09 14:12:09 +01:00
- Cavern of Souls AI: do not try to pay with the SA the card for which was already tapped, for this cost or for something else.
git-svn-id: http://svn.slightlymagic.net/forge/trunk@35729 269b9781-a132-4a9b-9d4e-f004f1b56b58
This commit is contained in:
parent
527ded8a2f
commit
065f4194bb
@ -244,8 +244,10 @@ public class ComputerUtilMana {
|
||||
} else if (toPay == ManaCostShard.GENERIC || toPay == ManaCostShard.X) {
|
||||
for (SpellAbility ab : saList) {
|
||||
if (ab.isManaAbility() && ab.getManaPart().isAnyMana() && ab.hasParam("AddsNoCounter")) {
|
||||
paymentChoice = ab;
|
||||
break;
|
||||
if (!ab.getHostCard().isTapped()) {
|
||||
paymentChoice = ab;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user