mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
Fix compilation error
This commit is contained in:
parent
465d8ba254
commit
f794e9551d
1 changed files with 1 additions and 4 deletions
|
@ -85,10 +85,7 @@ class BenevolentUnicornEffect extends ReplacementEffectImpl {
|
|||
if (stackObject == null) {
|
||||
stackObject = (StackObject) game.getLastKnownInformation(event.getSourceId(), Zone.STACK);
|
||||
}
|
||||
if (stackObject instanceof Spell) {
|
||||
return super.applies(event, source, game);
|
||||
}
|
||||
return false;
|
||||
return stackObject instanceof Spell;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue