mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
Fixed Champion Of Lambholt
This commit is contained in:
parent
559ba76906
commit
14dfe6e96f
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ class ChampionOfLambholtEffect extends RestrictionEffect<ChampionOfLambholtEffec
|
|||
Permanent sourcePermanent = game.getPermanent(source.getSourceId());
|
||||
if (sourcePermanent != null) {
|
||||
return attacker.getControllerId().equals(sourcePermanent.getControllerId())
|
||||
&& blocker.getPower().getValue() > attacker.getPower().getValue();
|
||||
&& blocker.getPower().getValue() >= attacker.getPower().getValue();
|
||||
}
|
||||
}
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue