* Chnages to text of priority prompt.

This commit is contained in:
LevelX2 2014-12-26 23:00:02 +01:00
parent 21a13bec61
commit 7d30d288be
2 changed files with 14 additions and 11 deletions

View file

@ -1719,14 +1719,13 @@ public abstract class GameImpl implements Game, Serializable {
if (simulation) {
return;
}
String message = this.state.getTurn().getStepType().toString();
String message;
if (this.canPlaySorcery(playerId)) {
message += " - play spells and abilities.";
message = "Play spells and abilities.";
}
else {
message += " - play instants and activated abilities.";
message = "Play instants and activated abilities.";
}
playerQueryEventSource.select(playerId, message);
}