Skip to content

Commit

Permalink
Fix noInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
SerVB committed Jan 13, 2019
1 parent 6c8bb59 commit 09c2694
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/scripts/client/gui/mods/mod_recent_stat_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ class PlayerData(object):
def createDict(self, configFormat):
# type: (ConfigFormat) -> dict
return {
STAT_FIELDS.KILO_BATTLES: self.orNoInfo(self.kb, configFormat.noInfo),
STAT_FIELDS.BATTLES: self.orNoInfo(self.battles, configFormat.noInfo),
STAT_FIELDS.WN8: self.orNoInfo(self.wn8, configFormat.noInfo),
STAT_FIELDS.XWN8: self.orNoInfo(self.xwn8, configFormat.noInfo),
STAT_FIELDS.KILO_BATTLES: self.orNoInfo(self.kb, configFormat),
STAT_FIELDS.BATTLES: self.orNoInfo(self.battles, configFormat),
STAT_FIELDS.WN8: self.orNoInfo(self.wn8, configFormat),
STAT_FIELDS.XWN8: self.orNoInfo(self.xwn8, configFormat),
}

@staticmethod
Expand Down

0 comments on commit 09c2694

Please sign in to comment.