- Added an extra check for Genju of the <X> AI.

This commit is contained in:
Agetian
2016-12-16 12:02:19 +00:00
parent f076b765de
commit d3951c0061

View File

@@ -202,6 +202,7 @@ public class ComputerUtilMana {
// For abilities like Genju of the Cedars, make sure that we're not activating the aura ability by tapping the enchanted card for mana // For abilities like Genju of the Cedars, make sure that we're not activating the aura ability by tapping the enchanted card for mana
if (sa.getHostCard() != null && sa.getApi() == ApiType.Animate && sa.getHostCard().isAura() if (sa.getHostCard() != null && sa.getApi() == ApiType.Animate && sa.getHostCard().isAura()
&& "Enchanted".equals(sa.getParam("Defined"))
&& ma.getHostCard() == sa.getHostCard().getEnchantingCard() && ma.getHostCard() == sa.getHostCard().getEnchantingCard()
&& ma.getPayCosts().hasTapCost()) { && ma.getPayCosts().hasTapCost()) {
continue; continue;