properly append evidence to chatlog
This commit is contained in:
parent
4c5222a6b9
commit
aeaf0997e7
@ -3568,16 +3568,13 @@ 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("<", "<"),
|
||||
"</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.ICLog.append(timestamp + '%s presented an evidence: %s' % (fChar, eviname.strip()))
|
||||
|
||||
self.isAdditive = (mChatMessage[ADDITIVE] == "1")
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user