summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/snomasks.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/snomasks.cpp b/src/snomasks.cpp
index c166bd72d..13eb326bf 100644
--- a/src/snomasks.cpp
+++ b/src/snomasks.cpp
@@ -70,6 +70,8 @@ void SnomaskManager::WriteToSnoMask(char letter, const std::string &text)
if (n != SnoMasks.end())
{
n->second->SendMessage(text);
+ // XXX: Always try flush here. This removes snomask stacking effectively, as it's too annoying in it's present form. This may be reworked for RC3, or delayed until post-release.
+ n->second->Flush();
}
}