Small fixes to ExchangeControlTargetEffect, GlintHawk and SavingGrasp

This commit is contained in:
LevelX2 2012-09-30 09:46:21 +02:00
parent 9ea25aa723
commit d6d07c3f9e
3 changed files with 15 additions and 6 deletions

View file

@ -114,7 +114,7 @@ public class ExchangeControlTargetEffect extends ContinuousEffectImpl<ExchangeCo
@Override
public boolean apply(Game game, Ability source) {
// if (this.lockedControllers != null) {
if (this.lockedControllers != null) {
for (UUID permanentId : targetPointer.getTargets(game, source)) {
Permanent permanent = game.getPermanent(permanentId);
if (permanent != null) {
@ -132,8 +132,8 @@ public class ExchangeControlTargetEffect extends ContinuousEffectImpl<ExchangeCo
}
}
return true;
// }
// return false;
}
return false;
}
@Override