17 lines
607 B
Python
17 lines
607 B
Python
|
from direct.directnotify import DirectNotifyGlobal
|
||
|
from toontown.ai import HolidayBaseAI
|
||
|
from toontown.ai import PropBuffHolidayAI
|
||
|
from toontown.ai import DistributedPhaseEventMgrAI
|
||
|
from toontown.toonbase import ToontownGlobals
|
||
|
|
||
|
class MailboxBuffHolidayAI(PropBuffHolidayAI.PropBuffHolidayAI):
|
||
|
|
||
|
notify = DirectNotifyGlobal.directNotify.newCategory(
|
||
|
'MailboxBuffHolidayAI')
|
||
|
|
||
|
PostName = 'MailboxBuffHoliday'
|
||
|
|
||
|
def __init__(self, air, holidayId, startAndEndTimes, phaseDates):
|
||
|
PropBuffHolidayAI.PropBuffHolidayAI.__init__(self, air, holidayId, startAndEndTimes, phaseDates)
|
||
|
|