properly append evidence to chatlog
This commit is contained in:
parent
4c5222a6b9
commit
aeaf0997e7
@ -3568,15 +3568,12 @@ class GUI(QtGui.QWidget):
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
if chatmsg:
|
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 "",
|
"<b>" if mentioned else "",
|
||||||
logcharName,
|
logcharName,
|
||||||
chatmsg.replace("<", "<"),
|
chatmsg.replace("<", "<"),
|
||||||
"</b>" if mentioned else "",
|
"</b>" if mentioned else ""
|
||||||
fChar,
|
|
||||||
eviname.strip()
|
|
||||||
))
|
))
|
||||||
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")
|
self.isAdditive = (mChatMessage[ADDITIVE] == "1")
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user