Skip to content

Commit

Permalink
improve UX for Wicked Slumber
Browse files Browse the repository at this point in the history
  • Loading branch information
xenohedron committed Aug 17, 2024
1 parent 4c06975 commit a827a93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mage.Sets/src/mage/cards/w/WickedSlumber.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public boolean apply(Game game, Ability source) {
for (int i = 0; i < 2; i++) {
TargetPermanent target = new TargetPermanent(filter);
target.withNotTarget(true);
target.withChooseHint("to add a stun counter to");
target.withChooseHint("to add the " + (i == 0 ? "first" : "second") + " stun counter to");
player.choose(outcome, target, source, game);
Permanent permanent = game.getPermanent(target.getFirstTarget());
if (permanent != null) {
Expand Down

0 comments on commit a827a93

Please sign in to comment.