order matters here

This commit is contained in:
petrucci4prez 2017-06-11 20:05:33 -04:00
parent 624574df3d
commit ba4882011f
1 changed files with 1 additions and 1 deletions

View File

@ -108,13 +108,13 @@ class SoundLib:
}
self._ttsSounds = TTSCache(psutil.virtual_memory().total * 0.001)
self._lock = RLock()
self.volume = 100
self._applyVolumesToSounds(self.volume)
self._ttsQueue = queue.Queue()
self._stopper = Event()
self._lock = RLock()
def start(self):
self._startMonitor()