diff --git a/gameview.py b/gameview.py index 7268797..8627af6 100644 --- a/gameview.py +++ b/gameview.py @@ -3209,7 +3209,8 @@ class gui(QtGui.QWidget): if f_message[self.tick_pos] != " " or self.blank_blip: if self.blip_pos % self.blip_rate == 0 and not formatting_char: self.blip_pos = 0 - audio.playhandle(self.blipsnd, True) + if self.blipsnd: + audio.playhandle(self.blipsnd, True) self.blip_pos += 1 diff --git a/mainmenu.py b/mainmenu.py index 4b0479b..818103f 100644 --- a/mainmenu.py +++ b/mainmenu.py @@ -520,6 +520,7 @@ class AOServerInfo(QtCore.QThread): del network[0] gotChars = True + print network charlist = [ [char.split('&')[0].decode('utf-8'), 0, "male", True ] for char in network ] # Disable characters not found in filesystem diff --git a/packets.py b/packets.py index 13e2d6a..4f59e8d 100644 --- a/packets.py +++ b/packets.py @@ -4,8 +4,7 @@ from PyQt4 import QtGui def handle_packets(caller, total, record=True): # Record the packet if demos enabled if record: - #caller.parent.demo_recorder.record(total) - pass + caller.parent.demo_recorder.record(total) for network in total: header = network[0]