mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
Fix for UserManager build error.
This commit is contained in:
parent
8cbca2491b
commit
1945e8eaa6
1 changed files with 2 additions and 2 deletions
|
@ -205,9 +205,9 @@ public class UserManager {
|
|||
if (userStats == null) {
|
||||
return "User " + userName + " not found";
|
||||
}
|
||||
return User.userStatsToString(userStats.getProto());
|
||||
return "History of user " + userName + ": " + User.userStatsToMatchHistory(userStats.getProto()) + " " + User.userStatsToTourneyHistory(userStats.getProto());
|
||||
}
|
||||
return "History of user " + userName + ": " + user.getUserData().getHistory();
|
||||
return "History of user " + userName + ": " + user.getUserData().getMatchHistory() + " " + user.getUserData().getTourneyHistory();
|
||||
}
|
||||
|
||||
public void updateUserHistory() {
|
||||
|
|
Loading…
Reference in a new issue