add imports

This commit is contained in:
cidoku 2025-03-11 16:54:22 -03:00
parent 04999e80e9
commit 4d7147040c

View File

@ -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,6 +92,7 @@ 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)
if caller.parent.wtcesfx:
audio.playhandle(caller.parent.wtcesfx, True)
caller.parent.WTCEsignal.emit(testimony, variant)