mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-10-31 16:57:54 +00:00
8 lines
455 B
Python
8 lines
455 B
Python
from toontown.parties.DistributedPartyJukeboxActivityBase import DistributedPartyJukeboxActivityBase
|
|
from toontown.parties import PartyGlobals
|
|
|
|
class DistributedPartyJukeboxActivity(DistributedPartyJukeboxActivityBase):
|
|
notify = directNotify.newCategory('DistributedPartyJukeboxActivity')
|
|
|
|
def __init__(self, cr):
|
|
DistributedPartyJukeboxActivityBase.__init__(self, cr, PartyGlobals.ActivityIds.PartyJukebox, PartyGlobals.PhaseToMusicData)
|