mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 13:19:18 -08:00
Rhystic Scrying payment cost fix
This commit is contained in:
parent
5a36a4d47e
commit
5c48d54916
1 changed files with 1 additions and 1 deletions
|
|
@ -83,7 +83,7 @@ class RhysticScryingEffect extends OneShotEffect {
|
||||||
if (controller != null && sourceObject != null) {
|
if (controller != null && sourceObject != null) {
|
||||||
boolean result = true;
|
boolean result = true;
|
||||||
boolean doEffect = false;
|
boolean doEffect = false;
|
||||||
Cost cost = new GenericManaCost(3);
|
Cost cost = new GenericManaCost(2);
|
||||||
// check if any player is willing to pay
|
// check if any player is willing to pay
|
||||||
for (UUID playerId : game.getState().getPlayersInRange(controller.getId(), game)) {
|
for (UUID playerId : game.getState().getPlayersInRange(controller.getId(), game)) {
|
||||||
Player player = game.getPlayer(playerId);
|
Player player = game.getPlayer(playerId);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue