mirror of
https://github.com/correl/mage.git
synced 2024-11-28 19:19:55 +00:00
Fixed a problem with the history chat command for user without matches.
This commit is contained in:
parent
d2031d81f3
commit
0a5a571141
1 changed files with 1 additions and 1 deletions
|
@ -403,7 +403,7 @@ public class User {
|
||||||
if (userStats != null) {
|
if (userStats != null) {
|
||||||
this.userData.setHistory(userStatsToString(userStats.getProto()));
|
this.userData.setHistory(userStatsToString(userStats.getProto()));
|
||||||
} else {
|
} else {
|
||||||
this.userData.setHistory("<new player>");
|
this.userData.setHistory("Matches: 0");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue