summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.html b/index.html
index 8624e20..068373e 100644
--- a/index.html
+++ b/index.html
@@ -178,7 +178,7 @@ function interfaceGameState(state){
var linktext="<a href=\"javascript:doCloseGame()\">Click here</a> to close the game.";
if(winningPlayer!=null){
var s="Player <b>"+winningPlayer.name+"</b> has won the game! ";
- s+=["Congratulations!","Too bad, maybe better next time."][+(winningPlayer.id==myId)];
+ s+=["Too bad, maybe better next time.","Congratulations!"][+(winningPlayer.id==myId)];
s+="<br>"+linktext;
setGameStatus(s);
} else {