From a26d45793e09b17087f883742e710c3d28ee1d1c Mon Sep 17 00:00:00 2001 From: Agetian Date: Wed, 22 Jan 2014 19:00:20 +0000 Subject: [PATCH] - Fix the formation of card choice window title for DigEffect. --- .../src/main/java/forge/game/ability/effects/DigEffect.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forge-game/src/main/java/forge/game/ability/effects/DigEffect.java b/forge-game/src/main/java/forge/game/ability/effects/DigEffect.java index 366307523c1..690850272a3 100644 --- a/forge-game/src/main/java/forge/game/ability/effects/DigEffect.java +++ b/forge-game/src/main/java/forge/game/ability/effects/DigEffect.java @@ -197,7 +197,7 @@ public class DigEffect extends SpellAbilityEffect { } else { int j = 0; - String prompt = "Choose a card to put into "; + String prompt = "Choose a card to put into {player's} " + destZone1.name(); if (destZone1.equals(ZoneType.Library)) { if (libraryPosition == -1) { prompt = "Choose a card to put on the bottom of {player's} library";