mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +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());
|
||||
break;
|
||||
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;
|
||||
}
|
||||
if (sourceCard != null) {
|
||||
|
|
Loading…
Reference in a new issue