mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
Minor fix for Kill-Suit Cultist
This commit is contained in:
parent
914931ed97
commit
e35e44941c
1 changed files with 2 additions and 1 deletions
|
@ -116,7 +116,8 @@ class KillSuitCultistEffect extends ReplacementEffectImpl {
|
|||
public boolean replaceEvent(GameEvent event, Ability source, Game game) {
|
||||
Permanent permanent = game.getPermanent(targetPointer.getFirst(game, source));
|
||||
if(permanent != null) {
|
||||
return permanent.destroy(source.getSourceId(), game, false);
|
||||
permanent.destroy(source.getSourceId(), game, false);
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue