* Trickbind and Stiffle - Fixed that the spells could wronly also counter spells.

This commit is contained in:
LevelX2 2014-08-14 15:27:33 +02:00
parent f0e8041906
commit 2326fcc0d1
4 changed files with 21 additions and 21 deletions

View file

@ -116,10 +116,7 @@ class TrickbindCantActivateEffect extends RestrictionEffect {
@Override
public boolean applies(Permanent permanent, Ability source, Game game) {
if (getTargetPointer().getFirst(game, source).equals(permanent.getId())) {
return true;
}
return false;
return getTargetPointer().getFirst(game, source).equals(permanent.getId());
}
@Override