forked from External/mage
Re-add the getHistory method.
This commit is contained in:
parent
1945e8eaa6
commit
a33aa5d2df
4 changed files with 12 additions and 3 deletions
|
|
@ -205,9 +205,9 @@ public class UserManager {
|
|||
if (userStats == null) {
|
||||
return "User " + userName + " not found";
|
||||
}
|
||||
return "History of user " + userName + ": " + User.userStatsToMatchHistory(userStats.getProto()) + " " + User.userStatsToTourneyHistory(userStats.getProto());
|
||||
return "History of user " + userName + ": " + User.userStatsToHistory(userStats.getProto());
|
||||
}
|
||||
return "History of user " + userName + ": " + user.getUserData().getMatchHistory() + " " + user.getUserData().getTourneyHistory();
|
||||
return "History of user " + userName + ": " + user.getUserData().getHistory();
|
||||
}
|
||||
|
||||
public void updateUserHistory() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue