Rhystic Scrying payment cost fix

This commit is contained in:
Zzooouhh 2017-12-17 16:02:46 +01:00 committed by GitHub
parent 5a36a4d47e
commit 5c48d54916
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);