fixed Issue 64

This commit is contained in:
BetaSteward 2011-05-09 22:58:40 -04:00
parent 9d05d5b06a
commit 2f515e242b
3 changed files with 4 additions and 1 deletions

View file

@ -84,11 +84,13 @@ public class GamePane extends MagePane {
}
public void watchGame(UUID gameId) {
this.setTitle("Watching " + gameId);
gamePanel.watchGame(gameId);
this.toFront();
}
public void replayGame(UUID gameId) {
this.setTitle("Replaying " + gameId);
gamePanel.replayGame(gameId);
this.toFront();
}