Ejemplo n.º 1
0
 def isValidAccountType(self):
     attrs = g_itemsCache.items.stats.attributes
     return not (isOutOfWallet(attrs) and not isClanEnabled(attrs))
Ejemplo n.º 2
0
 def isValidAccountType(self, itemsCache=None):
     attrs = itemsCache.items.stats.attributes if itemsCache is not None else 0
     return not (isOutOfWallet(attrs) and not isClanEnabled(attrs))
Ejemplo n.º 3
0
 def canSendApplication(self):
     return not isOutOfWallet(g_itemsCache.items.stats.attributes)
Ejemplo n.º 4
0
 def canDeclineInvite(self):
     return not isOutOfWallet(g_itemsCache.items.stats.attributes)
Ejemplo n.º 5
0
 def isValidAccountType(self):
     attrs = g_itemsCache.items.stats.attributes
     return not (isOutOfWallet(attrs) and not isClanEnabled(attrs))