Fixed a problem with the history chat command for user without matches.

This commit is contained in:
LevelX2 2016-01-26 17:09:13 +01:00
parent d2031d81f3
commit 0a5a571141

View file

@ -403,7 +403,7 @@ public class User {
if (userStats != null) {
this.userData.setHistory(userStatsToString(userStats.getProto()));
} else {
this.userData.setHistory("<new player>");
this.userData.setHistory("Matches: 0");
}
}
}