From 0c81ce980193848f805da16de6bc021a50084de5 Mon Sep 17 00:00:00 2001 From: Jeff Wadsworth Date: Fri, 4 Feb 2022 15:13:34 -0600 Subject: [PATCH] - disabled AI from using Sasaya, Orochi Ascendant for now. Repetition needs to be rectified first. It leads to infinite games for users. #8611 --- Mage.Sets/src/mage/cards/s/SasayaOrochiAscendant.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Mage.Sets/src/mage/cards/s/SasayaOrochiAscendant.java b/Mage.Sets/src/mage/cards/s/SasayaOrochiAscendant.java index 1c78594bd0..c3d9ce61d3 100644 --- a/Mage.Sets/src/mage/cards/s/SasayaOrochiAscendant.java +++ b/Mage.Sets/src/mage/cards/s/SasayaOrochiAscendant.java @@ -27,6 +27,7 @@ import mage.players.Player; import java.util.List; import java.util.UUID; +import mage.abilities.effects.Effect; import mage.choices.Choice; import mage.choices.ChoiceColor; @@ -48,6 +49,8 @@ public final class SasayaOrochiAscendant extends CardImpl { this.flipCardName = "Sasaya's Essence"; // Reveal your hand: If you have seven or more land cards in your hand, flip Sasaya, Orochi Ascendant. + Effect effect = new SasayaOrochiAscendantFlipEffect(); + effect.setOutcome(Outcome.AIDontUseIt); // repetition issues need to be fixed for the AI to use this effectively this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new SasayaOrochiAscendantFlipEffect(), new RevealHandSourceControllerCost())); }