mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-23 03:35:12 -06:00
11 lines
449 B
Python
11 lines
449 B
Python
from toontown.battle import DistributedBattle
|
|
from direct.directnotify import DirectNotifyGlobal
|
|
|
|
class DistributedBattleTutorial(DistributedBattle.DistributedBattle):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedBattleTutorial')
|
|
|
|
def startTimer(self, ts = 0):
|
|
self.townBattle.timer.hide()
|
|
|
|
def playReward(self, ts):
|
|
self.movie.playTutorialReward(ts, self.uniqueName('reward'), self.handleRewardDone)
|