mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Fixed Issue 176.
This commit is contained in:
parent
4600890c93
commit
084b5657ad
1 changed files with 3 additions and 1 deletions
|
@ -62,7 +62,9 @@ public class CardsView extends HashMap<UUID, CardView> {
|
||||||
sourceCard = game.getCard(ability.getSourceId());
|
sourceCard = game.getCard(ability.getSourceId());
|
||||||
break;
|
break;
|
||||||
case BATTLEFIELD:
|
case BATTLEFIELD:
|
||||||
sourceCard = game.getLastKnownInformation(ability.getSourceId(), Zone.BATTLEFIELD);
|
sourceCard = game.getPermanent(ability.getSourceId());
|
||||||
|
if (sourceCard == null)
|
||||||
|
sourceCard = game.getLastKnownInformation(ability.getSourceId(), Zone.BATTLEFIELD);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (sourceCard != null) {
|
if (sourceCard != null) {
|
||||||
|
|
Loading…
Reference in a new issue