mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Snickering Squirrel set to do nothing to planar dies
This commit is contained in:
parent
a32b4b75af
commit
7ac87fba93
1 changed files with 4 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue