mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
* Chnages to text of priority prompt.
This commit is contained in:
parent
21a13bec61
commit
7d30d288be
2 changed files with 14 additions and 11 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue