mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-23 03:35:12 -06:00
12 lines
603 B
Python
12 lines
603 B
Python
from toontown.safezone import MMPlayground
|
|
from toontown.safezone import SafeZoneLoader
|
|
|
|
|
|
class MMSafeZoneLoader(SafeZoneLoader.SafeZoneLoader):
|
|
def __init__(self, hood, parentFSM, doneEvent):
|
|
SafeZoneLoader.SafeZoneLoader.__init__(self, hood, parentFSM, doneEvent)
|
|
self.playgroundClass = MMPlayground.MMPlayground
|
|
self.musicFile = 'phase_6/audio/bgm/MM_nbrhood.ogg'
|
|
self.activityMusicFile = 'phase_6/audio/bgm/MM_SZ_activity.ogg'
|
|
self.dnaFile = 'phase_6/dna/minnies_melody_land_sz.pdna'
|
|
self.safeZoneStorageDNAFile = 'phase_6/dna/storage_MM_sz.pdna'
|