mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Fixed wrong text of MayTapOrUntapTargetEffect.
This commit is contained in:
parent
e851643952
commit
956305f7bd
1 changed files with 2 additions and 2 deletions
|
@ -26,11 +26,11 @@ public class MayTapOrUntapTargetEffect extends OneShotEffect<MayTapOrUntapTarget
|
|||
Player player = game.getPlayer(source.getControllerId());
|
||||
if (target != null && player != null) {
|
||||
if (target.isTapped()) {
|
||||
if (player.chooseUse(Constants.Outcome.Untap, "Untap that creature?", game)) {
|
||||
if (player.chooseUse(Constants.Outcome.Untap, "Untap that permanent?", game)) {
|
||||
target.untap(game);
|
||||
}
|
||||
} else {
|
||||
if (player.chooseUse(Constants.Outcome.Tap, "Tap that creature?", game)) {
|
||||
if (player.chooseUse(Constants.Outcome.Tap, "Tap that permanent?", game)) {
|
||||
target.tap(game);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue