Minor fix for Kill-Suit Cultist

This commit is contained in:
LoneFox 2015-10-02 14:20:29 +03:00
parent 914931ed97
commit e35e44941c

View file

@ -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;
}