Merge pull request #2944 from Alexsandr0x/sakashima-bug

SpellStutter Sprite - Sakashima Impostor Bug
This commit is contained in:
Derek M 2017-03-07 16:10:06 -05:00 committed by GitHub
commit 2ff68c2fb3
2 changed files with 30 additions and 1 deletions

View file

@ -126,7 +126,8 @@ class SpellstutterSpriteCounterTargetEffect extends OneShotEffect {
*/
int numberFaeries = game.getState().getBattlefield().countAll(SpellstutterSprite.filter, source.getControllerId(), game);
StackObject stackObject = game.getStack().getStackObject(source.getFirstTarget());
if (stackObject.getConvertedManaCost() <= numberFaeries) {
// If do'nt have any spell targeted
if (stackObject != null && stackObject.getConvertedManaCost() <= numberFaeries) {
if (game.getStack().counter(source.getFirstTarget(), source.getSourceId(), game)) {
return true;
}