From 5c48d549161d666edec577d73ffacee0d14ec51e Mon Sep 17 00:00:00 2001 From: Zzooouhh Date: Sun, 17 Dec 2017 16:02:46 +0100 Subject: [PATCH] Rhystic Scrying payment cost fix --- Mage.Sets/src/mage/cards/r/RhysticScrying.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/r/RhysticScrying.java b/Mage.Sets/src/mage/cards/r/RhysticScrying.java index 5b19673103a..f558aa0e119 100644 --- a/Mage.Sets/src/mage/cards/r/RhysticScrying.java +++ b/Mage.Sets/src/mage/cards/r/RhysticScrying.java @@ -83,7 +83,7 @@ class RhysticScryingEffect extends OneShotEffect { if (controller != null && sourceObject != null) { boolean result = true; boolean doEffect = false; - Cost cost = new GenericManaCost(3); + Cost cost = new GenericManaCost(2); // check if any player is willing to pay for (UUID playerId : game.getState().getPlayersInRange(controller.getId(), game)) { Player player = game.getPlayer(playerId);