From 4fc78adab9c4764ec0d3628c9d8f989d4ef2aab3 Mon Sep 17 00:00:00 2001 From: Mathew Sutcliffe Date: Mon, 18 Aug 2014 20:34:44 +0100 Subject: [PATCH] refs #283 Simulator can display private messages too --- src/blackcore/context_simulator_impl.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/blackcore/context_simulator_impl.cpp b/src/blackcore/context_simulator_impl.cpp index 0ecfc272c..8a30abaf4 100644 --- a/src/blackcore/context_simulator_impl.cpp +++ b/src/blackcore/context_simulator_impl.cpp @@ -299,7 +299,6 @@ namespace BlackCore if (!this->m_simulator) return; foreach(CTextMessage tm, textMessages) { - if (!tm.isPrivateMessage()) continue; this->m_simulator->displayStatusMessage(tm.asStatusMessage(true, true)); } }