Fixed Champion Of Lambholt

This commit is contained in:
magenoxx 2012-06-27 12:46:16 +04:00
parent 559ba76906
commit 14dfe6e96f

View file

@ -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;