mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
* Dreadhorde Arcanist - fixed wrong target cards for trigger;
This commit is contained in:
parent
12aa3b82b8
commit
26fea5d07b
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ enum DreadhordeArcanistPredicate implements ObjectSourcePlayerPredicate<ObjectSo
|
|||
public boolean apply(ObjectSourcePlayer<Card> input, Game game) {
|
||||
Permanent sourcePermanent = game.getPermanentOrLKIBattlefield(input.getSourceId());
|
||||
return sourcePermanent != null
|
||||
& input.getObject().getManaValue() <= sourcePermanent.getPower().getValue();
|
||||
&& input.getObject().getManaValue() <= sourcePermanent.getPower().getValue();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue