mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +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());
|
Permanent sourcePermanent = game.getPermanent(source.getSourceId());
|
||||||
if (sourcePermanent != null) {
|
if (sourcePermanent != null) {
|
||||||
return attacker.getControllerId().equals(sourcePermanent.getControllerId())
|
return attacker.getControllerId().equals(sourcePermanent.getControllerId())
|
||||||
&& blocker.getPower().getValue() > attacker.getPower().getValue();
|
&& blocker.getPower().getValue() >= attacker.getPower().getValue();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue