Summon between 1000 and 3000 cogs

This commit is contained in:
John 2015-06-08 19:41:24 +03:00 committed by Loudrob
parent 910fcfdc77
commit 10a451c883

View file

@ -1,4 +1,4 @@
import time import time, random
from toontown.battle import SuitBattleGlobals from toontown.battle import SuitBattleGlobals
from toontown.suit import SuitDNA from toontown.suit import SuitDNA
@ -74,7 +74,7 @@ class SuitInvasionManagerAI:
# How many suits do we want? # How many suits do we want?
if type == INVASION_TYPE_NORMAL: if type == INVASION_TYPE_NORMAL:
self.total = 1000 self.total = random.randint(1000, 3000)
elif type == INVASION_TYPE_MEGA: elif type == INVASION_TYPE_MEGA:
self.total = 5000 self.total = 5000
elif type == INVASION_TYPE_BRUTAL: elif type == INVASION_TYPE_BRUTAL: