diff --git a/packets.py b/packets.py index ff899b9..e91cc14 100644 --- a/packets.py +++ b/packets.py @@ -1,6 +1,9 @@ import time from constants import * from PyQt4 import QtGui +from os.path import exists +from pybass_constants import * + def handle_packets(caller, total, record=True): # Record the packet if demos enabled if record and caller.parent.demo_recorder: @@ -89,7 +92,8 @@ def handle_packets(caller, total, record=True): variant = 0 caller.parent.wtcesfx = audio.loadhandle(False, wtcefile+".opus" if exists(wtcefile+".opus") else wtcefile+".wav", 0, 0, 0) audio.sethandleattr(caller.parent.wtcesfx, BASS_ATTRIB_VOL, caller.parent.soundslider.value() / 100.0) - audio.playhandle(caller.parent.wtcesfx, True) + if caller.parent.wtcesfx: + audio.playhandle(caller.parent.wtcesfx, True) caller.parent.WTCEsignal.emit(testimony, variant) elif header == 'HP':