forked from External/mage
Add rating to the client (#1498)
This commit is contained in:
parent
972d59aa37
commit
c781728b97
16 changed files with 234 additions and 52 deletions
|
|
@ -195,7 +195,10 @@ public class UserData implements Serializable {
|
|||
if (UserGroup.COMPUTER.equals(this.groupId)) {
|
||||
return "";
|
||||
}
|
||||
return "Matches: " + this.matchHistory + " (" + this.matchQuitRatio + "%) Tourneys: " + this.tourneyHistory + " (" + this.tourneyQuitRatio + "%)";
|
||||
// todo: add preference to hide rating?
|
||||
return "Matches: " + this.matchHistory + " (" + this.matchQuitRatio + "%), Tourneys: " + this.tourneyHistory + " (" + this.tourneyQuitRatio + "%)"
|
||||
+ ", Constructed Rating: " + getConstructedRating()
|
||||
+ ", Limited Rating: " + getLimitedRating();
|
||||
}
|
||||
|
||||
public void setMatchHistory(String history) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue