From 7ac87fba93eadab8b49b1516fb2c5bf584844a1f Mon Sep 17 00:00:00 2001 From: Zzooouhh Date: Sat, 30 Dec 2017 13:12:58 +0100 Subject: [PATCH] Snickering Squirrel set to do nothing to planar dies --- Mage.Sets/src/mage/cards/s/SnickeringSquirrel.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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); + } } } }