mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 12:49:39 -08:00
* Trickbind and Stiffle - Fixed that the spells could wronly also counter spells.
This commit is contained in:
parent
f0e8041906
commit
2326fcc0d1
4 changed files with 21 additions and 21 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue