From 4d7147040caea4d423be95e21856c5cc2d5bdd11 Mon Sep 17 00:00:00 2001 From: cidoku Date: Tue, 11 Mar 2025 16:54:22 -0300 Subject: [PATCH] add imports --- packets.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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':