add imports
This commit is contained in:
parent
04999e80e9
commit
4d7147040c
@ -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':
|
||||
|
Loading…
Reference in New Issue
Block a user