mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
fix boolean evaluation for ThunderkinAwakener
This commit is contained in:
parent
91a01a78bc
commit
bcb9011476
1 changed files with 1 additions and 1 deletions
|
|
@ -78,7 +78,7 @@ enum ThunderkinAwakenerPredicate implements ObjectSourcePlayerPredicate<ObjectSo
|
|||
public boolean apply(ObjectSourcePlayer<Card> input, Game game) {
|
||||
Permanent sourcePermanent = game.getPermanentOrLKIBattlefield(input.getSourceId());
|
||||
return sourcePermanent != null
|
||||
& input.getObject().getToughness().getValue() < sourcePermanent.getToughness().getValue();
|
||||
&& input.getObject().getToughness().getValue() < sourcePermanent.getToughness().getValue();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue