diff --git a/forge-ai/src/main/java/forge/ai/PlayerControllerAi.java b/forge-ai/src/main/java/forge/ai/PlayerControllerAi.java index 035b32a18d7..e230c7bd04c 100644 --- a/forge-ai/src/main/java/forge/ai/PlayerControllerAi.java +++ b/forge-ai/src/main/java/forge/ai/PlayerControllerAi.java @@ -320,9 +320,10 @@ public class PlayerControllerAi extends PlayerController { @Override public boolean willPutCardOnTop(Card c) { - // TODO add Logic there similar to Scry. this is used for Clash + // This is used for Clash. Currently uses Scry logic to determine whether the card should be put on top. + // Note that the AI does not know what will happen next (another clash or that would become his topdeck) - return true; // AI does not know what will happen next (another clash or that would become his topdeck) + return !ComputerUtil.scryWillMoveCardToBottomOfLibrary(player, c); } @Override