From 36b309df6bf09f445f83e87723f36eb899a95fa4 Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Sun, 26 Jan 2020 19:56:01 +0400 Subject: [PATCH] * Thassa's Oracle - fixed wrong text (#6223); --- Mage.Sets/src/mage/cards/t/ThassasOracle.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/t/ThassasOracle.java b/Mage.Sets/src/mage/cards/t/ThassasOracle.java index 4110561d1c..a7ee33cc0e 100644 --- a/Mage.Sets/src/mage/cards/t/ThassasOracle.java +++ b/Mage.Sets/src/mage/cards/t/ThassasOracle.java @@ -49,7 +49,7 @@ class ThassasOracleEffect extends OneShotEffect { ThassasOracleEffect() { super(Outcome.Benefit); staticText = "look at the top X cards of your library, where X is your devotion to blue. " + - "Put one of them on top of your library and the rest on the bottom of your library in a random order. " + + "Put up to one of them on top of your library and the rest on the bottom of your library in a random order. " + "If X is greater than or equal to the number of cards in your library, you win the game"; }