Improve grammar and written clarity on Commander zone replacement effect. Still works with Oathbreaker

This commit is contained in:
PurpleCrowbar 2023-03-15 03:49:26 +00:00
parent 03b82ff7ee
commit bd2678242d
2 changed files with 5 additions and 5 deletions

View file

@ -2147,7 +2147,7 @@ public abstract class GameImpl implements Game {
for (Card card : commanders) {
Zone currentZone = this.getState().getZone(card.getId());
String currentZoneInfo = (currentZone == null ? "(error)" : "(" + currentZone.name() + ")");
if (player.chooseUse(Outcome.Benefit, "Move " + card.getIdName()
if (player.chooseUse(Outcome.Benefit, "Move " + card.getLogName()
+ " to the command zone or leave it in current zone " + currentZoneInfo + "?", "You can only make this choice once per object",
"Move to command", "Leave in current zone " + currentZoneInfo, null, this)) {
toMove.add(card);