* Game watching - Show number of games watched by player in player list.

This commit is contained in:
LevelX2 2014-05-29 18:21:04 +02:00
parent 83be13a68b
commit 3a5dd428e6
4 changed files with 25 additions and 4 deletions

View file

@ -337,9 +337,7 @@ public class TableController {
if (userPlayerMap.get(userId) != null) {
return false;
}
UserManager.getInstance().getUser(userId).watchGame(match.getGame().getId());
return true;
return UserManager.getInstance().getUser(userId).watchGame(match.getGame().getId());
}
}