* Control player - Fixed the phase names shown to the controlled player (fixes #415).

This commit is contained in:
LevelX2 2014-05-28 17:29:04 +02:00
parent 2b8afe379a
commit dad109b88e
2 changed files with 2 additions and 1 deletions

View file

@ -672,7 +672,7 @@ public class GameController implements GameCallback {
if (controller == null) {
return;
}
final String message = new StringBuilder(game.getStep().toString()).append(" - Waiting for ").append(controller.getName()).toString();
final String message = new StringBuilder(game.getStep().getType().toString()).append(" - Waiting for ").append(controller.getName()).toString();
for (final Entry<UUID, GameSession> entry: gameSessions.entrySet()) {
boolean skip = false;
for (UUID uuid : players) {