Git: WTF u doing m8.

This commit is contained in:
Alexander 2015-08-26 17:46:01 -04:00
parent 4e2c303d3b
commit de8446e261
3 changed files with 4 additions and 4 deletions

View file

@ -33,7 +33,7 @@ uberdogs:
roles: roles:
- type: clientagent - type: clientagent
bind: 0.0.0.0:7199 bind: 0.0.0.0:7199
version: "stride-beta-dev-g20cbfe0" version: "tts-dev"
client: client:
relocate: true relocate: true
add_interest: enabled add_interest: enabled

View file

@ -4,7 +4,7 @@
# Client settings # Client settings
window-title Toontown Stride [Beta] window-title Toontown Stride [Beta]
server-version stride-beta-dev-g3af22c4 server-version SERVER_VERSION_HERE
video-library-name p3ffmpeg video-library-name p3ffmpeg
want-dev #f want-dev #f
preload-avatars #t preload-avatars #t

View file

@ -27,7 +27,7 @@ class DistributedMMPiano(DistributedObject.DistributedObject):
taskMgr.doMethodLater(4, self.setupGeom, self.uniqueName('setup-geom')) taskMgr.doMethodLater(4, self.setupGeom, self.uniqueName('setup-geom'))
def setupGeom(self, task): def setupGeom(self, task):
'''geom = self.cr.playGame.getPlace().loader.geom geom = self.cr.playGame.getPlace().loader.geom
self.piano = geom.find('**/center_icon') self.piano = geom.find('**/center_icon')
if self.piano.isEmpty(): if self.piano.isEmpty():
loader.notify.error('Piano not found') loader.notify.error('Piano not found')
@ -43,7 +43,7 @@ class DistributedMMPiano(DistributedObject.DistributedObject):
base.cr.parentMgr.registerParent(ToontownGlobals.SPMinniesPiano, self.piano) base.cr.parentMgr.registerParent(ToontownGlobals.SPMinniesPiano, self.piano)
self.accept('enter' + self.whitePartNodeName, self.__handleOnFloor) self.accept('enter' + self.whitePartNodeName, self.__handleOnFloor)
self.accept('exit' + self.whitePartNodeName, self.__handleOffFloor) self.accept('exit' + self.whitePartNodeName, self.__handleOffFloor)
self.accept('entermid_fishpond', self.__handleChangeDirectionButton)''' self.accept('entermid_fishpond', self.__handleChangeDirectionButton)
self.speedUpSound = base.loadSfx('phase_6/audio/sfx/SZ_MM_gliss.ogg') self.speedUpSound = base.loadSfx('phase_6/audio/sfx/SZ_MM_gliss.ogg')
self.changeDirectionSound = base.loadSfx('phase_6/audio/sfx/SZ_MM_cymbal.ogg') self.changeDirectionSound = base.loadSfx('phase_6/audio/sfx/SZ_MM_cymbal.ogg')
self.__setupSpin() self.__setupSpin()