properly append evidence to chatlog

This commit is contained in:
cidoku 2025-12-29 02:21:34 -03:00
parent 4c5222a6b9
commit aeaf0997e7

View File

@ -3568,15 +3568,12 @@ class GUI(QtGui.QWidget):
pass
if chatmsg:
self.ICLog.append("<b></b>" + timestamp + '%s%s: %s%s\n%s presented an evidence: %s' % (
self.ICLog.append("<b></b>" + timestamp + '%s%s: %s%s' % (
"<b>" if mentioned else "",
logcharName,
chatmsg.replace("<", "&lt;"),
"</b>" if mentioned else "",
fChar,
eviname.strip()
"</b>" if mentioned else ""
))
else:
self.ICLog.append(timestamp + '%s presented an evidence: %s' % (fChar, eviname.strip()))
self.isAdditive = (mChatMessage[ADDITIVE] == "1")