switch to notguilty opus. the future is now old man

This commit is contained in:
Headshotnoby 2021-06-21 21:52:31 -04:00
parent f6fd61bbbf
commit e7e7cca397

View File

@ -664,9 +664,10 @@ class gui(QtGui.QWidget):
wtcefile = AOpath+"sounds/general/sfx-testimony2" wtcefile = AOpath+"sounds/general/sfx-testimony2"
guiltyfile = AOpath+"sounds/general/sfx-guilty" guiltyfile = AOpath+"sounds/general/sfx-guilty"
notguiltyfile = AOpath+"sounds/general/sfx-notguilty.opus"
self.wtcesfx = audio.loadhandle(False, wtcefile+".opus" if exists(wtcefile+".opus") else wtcefile+".wav", 0, 0, 0) self.wtcesfx = audio.loadhandle(False, wtcefile+".opus" if exists(wtcefile+".opus") else wtcefile+".wav", 0, 0, 0)
self.guiltysfx = audio.loadhandle(False, guiltyfile+".opus" if exists(guiltyfile+".opus") else guiltyfile+".wav", 0, 0, 0) self.guiltysfx = audio.loadhandle(False, guiltyfile+".opus" if exists(guiltyfile+".opus") else guiltyfile+".wav", 0, 0, 0)
self.notguiltysfx = audio.loadhandle(False, "sfx-notguilty.wav", 0, 0, 0) self.notguiltysfx = audio.loadhandle(False, notguiltyfile, 0, 0, 0)
self.healthbars.connect(self.netmsg_hp) self.healthbars.connect(self.netmsg_hp)
self.disconnectnow = False self.disconnectnow = False