* Game log - Uses term choosing instead of targeting for non targeted selections.

This commit is contained in:
LevelX2 2014-03-12 17:40:02 +01:00
parent 1e7cfa086b
commit f64ed10fac
2 changed files with 24 additions and 20 deletions

View file

@ -2107,7 +2107,7 @@ public abstract class PlayerImpl<T extends PlayerImpl<T>> implements Player, Ser
game.informPlayers(new StringBuilder(this.getName())
.append(" puts ").append(card.getName()).append(" ")
.append(fromZone != null ? new StringBuilder("from ").append(fromZone.toString().toLowerCase(Locale.ENGLISH)).append(" "):"")
.append("onto his or her hand").toString());
.append("into his or her hand").toString());
}
return result;
}