mirror of
https://github.com/correl/mage.git
synced 2024-11-14 11:09:31 +00:00
- Added some extra log clarity to Whirlwind Denial
This commit is contained in:
parent
7ea143a9a6
commit
fbcdda16d1
1 changed files with 10 additions and 0 deletions
|
@ -70,8 +70,18 @@ class WhirlwindDenialEffect extends OneShotEffect {
|
|||
&& player.chooseUse(outcome, "Pay {4} to prevent "
|
||||
+ stackObject.getIdName() + " from being countered?", source, game)
|
||||
&& cost.pay(source, game, source.getSourceId(), stackObject.getControllerId(), false)) {
|
||||
game.informPlayers("The cost was paid by "
|
||||
+ player.getLogName()
|
||||
+ " to prevent "
|
||||
+ stackObject.getIdName()
|
||||
+ " from being countered.");
|
||||
return;
|
||||
}
|
||||
game.informPlayers("The cost was not paid by "
|
||||
+ player.getLogName()
|
||||
+ " to prevent "
|
||||
+ stackObject.getIdName()
|
||||
+ " from being countered.");
|
||||
game.getStack().counter(stackObject.getId(), source.getSourceId(), game);
|
||||
});
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue