Exemplo n.º 1
0
 def getLeagueString(self):
     return club_fmts.getLeagueString(getLeagueByDivision(self.division))
Exemplo n.º 2
0
 def getLeague(self):
     if self.isInLadder():
         return getLeagueByDivision(self.getDivision())
     else:
         return None
Exemplo n.º 3
0
 def getLeagueString(self):
     return club_fmts.getLeagueString(getLeagueByDivision(self.division))
Exemplo n.º 4
0
 def getLeague(self):
     if self.isInLadder():
         return getLeagueByDivision(self.getDivision())
     else:
         return None
Exemplo n.º 5
0
 def getDivision(self):
     """ Returns quest's divisino and league
     """
     clubCond = self.postBattleCond.getConditions().find('clubs')
     division = clubCond.getDivision()
     return (division, getLeagueByDivision(division))
Exemplo n.º 6
0
 def getDivision(self):
     """ Returns quest's divisino and league
     """
     clubCond = self.postBattleCond.getConditions().find('clubs')
     division = clubCond.getDivision()
     return (division, getLeagueByDivision(division))