- Fixed NPE caused by Sidisi, Brood Tyrant (but it still won't work correctly with some effects).

This commit is contained in:
Sloth
2015-04-18 11:07:29 +00:00
parent 8d251f15f3
commit 057fc34110

View File

@@ -138,7 +138,7 @@ public class TriggerChangesZone extends Trigger {
// card, rather than keeping track of the host card itself - but it's good enough for now - since there are
// no cards with multiple different OncePerEffect triggers.
SpellAbilityStackInstance si = (SpellAbilityStackInstance) runParams2.get("SpellAbilityStackInstance");
return si.attemptOncePerEffectTrigger(this.getHostCard());
return si != null && si.attemptOncePerEffectTrigger(this.getHostCard());
}
return true;