temp fix for testimonies

This commit is contained in:
cidoku 2025-07-28 00:15:41 -04:00
parent cc7daedfed
commit d71eef20f7

View File

@ -2798,7 +2798,7 @@ class GUI(QtGui.QWidget):
if self.msgqueue:
chatmsgcomp = (self.msgqueue[0].split('#')[5]).replace('<dollar>', '$').replace('<percent>', '%').replace('<and>', '&').replace('<num>', '#')
examine = chatmsgcomp == ">" or chatmsgcomp == "<"
examine = chatmsgcomp == ">" or chatmsgcomp == "<" or chatmsgcomp == "="
special = not chatmsgcomp or chatmsgcomp.isspace()
if examine or (f_char_id == self.mychar and (special or m_chatmessage[CHATMSG] == chatmsgcomp)): # our message showed up
del self.msgqueue[0]