diff --git a/Mage.Sets/src/mage/cards/s/SnickeringSquirrel.java b/Mage.Sets/src/mage/cards/s/SnickeringSquirrel.java index 7022dc9c0bb..ad835d320fe 100644 --- a/Mage.Sets/src/mage/cards/s/SnickeringSquirrel.java +++ b/Mage.Sets/src/mage/cards/s/SnickeringSquirrel.java @@ -91,7 +91,10 @@ class SnickeringSquirrelEffect extends ReplacementEffectImpl { if (permanent != null && permanent.canTap() && !permanent.isTapped()) { if (controller.chooseUse(Outcome.AIDontUseIt, "Do you want to tap this to increase the result of a die any player rolled by 1?", null, "Yes", "No", source, game)) { permanent.tap(game); - event.setAmount(event.getAmount() + 1); + // ignore planar dies (dice roll amount of planar dies is equal to 0) + if (event.getAmount() > 0) { + event.setAmount(event.getAmount() + 1); + } } } }