comparison gamelib/scenes/bridge.py @ 629:660ef5793886 pyntnclick

Remove albow from sound
author Neil Muller <neil@dip.sun.ac.za>
date Sat, 11 Feb 2012 22:20:26 +0200
parents cab77cf07822
children c77d6aa29bee
comparison
equal deleted inserted replaced
628:a3b82af01749 629:660ef5793886
71 (639, 180, 11, 95), 71 (639, 180, 11, 95),
72 )) 72 ))
73 self.add_thing(self.doctor) 73 self.add_thing(self.doctor)
74 74
75 def enter(self): 75 def enter(self):
76 pieces = [self.sound.get_music(x, prefix='sounds') for x in self.MUSIC] 76 pieces = [self.sound.get_music(x) for x in self.MUSIC]
77 self.background_playlist = self.sound.get_playlist(pieces, random=True, 77 self.background_playlist = self.sound.get_playlist(pieces, random=True,
78 repeat=True) 78 repeat=True)
79 self.sound.change_playlist(self.background_playlist) 79 self.sound.change_playlist(self.background_playlist)
80 80
81 def leave(self): 81 def leave(self):