Disabled tournament statistics, they are calculated incorrectly.

This commit is contained in:
RumbleBBU
2012-09-27 09:43:29 +00:00
parent 4a04de9482
commit dcaf06240e

View File

@@ -129,9 +129,9 @@ public class GauntletWinLose extends ControlWinLose {
private void showTournamentInfo(final String newTitle) {
this.lblTemp1 = new TitleLabel(newTitle);
this.lblTemp2 = new JLabel("Round: " + gauntlet.getCurrentRound() + "/" + gauntlet.getRounds()
+ " Total Wins: " + gauntlet.getWins()
+ " Total Losses: " + gauntlet.getLosses());
this.lblTemp2 = new JLabel("Round: " + gauntlet.getCurrentRound() + "/" + gauntlet.getRounds());
// + " Total Wins: " + gauntlet.getWins()
// + " Total Losses: " + gauntlet.getLosses());
this.lblTemp2.setHorizontalAlignment(SwingConstants.CENTER);
this.lblTemp2.setFont(FSkin.getFont(17));
this.lblTemp2.setForeground(Color.white);