diff options
author | Robby- <robbyke@gmail.com> | 2012-04-15 10:45:34 +0200 |
---|---|---|
committer | Robby- <robbyke@gmail.com> | 2012-04-15 10:45:34 +0200 |
commit | c376d800ebe6057f2afd7ffcd065b64e0cdb3292 (patch) | |
tree | 6b95d2b2e9d8d748895a840a69bb9652abd12ecf /src/snomasks.cpp | |
parent | 207c6c290e5b752d562fdc0b121379d511a3dce8 (diff) |
Backported Shawn's NoSnoticeStack code from insp21
Diffstat (limited to 'src/snomasks.cpp')
-rw-r--r-- | src/snomasks.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/snomasks.cpp b/src/snomasks.cpp index f8e1fc158..e0849147b 100644 --- a/src/snomasks.cpp +++ b/src/snomasks.cpp @@ -83,7 +83,7 @@ SnomaskManager::SnomaskManager() void Snomask::SendMessage(const std::string &message, char mysnomask) { - if (message != LastMessage || mysnomask != LastLetter) + if (ServerInstance->Config->NoSnoticeStack || message != LastMessage || mysnomask != LastLetter) { this->Flush(); LastMessage = message; |