diff options
| author | 2012-04-15 10:45:34 +0200 | |
|---|---|---|
| committer | 2012-04-15 10:45:34 +0200 | |
| commit | c376d800ebe6057f2afd7ffcd065b64e0cdb3292 (patch) | |
| tree | 6b95d2b2e9d8d748895a840a69bb9652abd12ecf /src/snomasks.cpp | |
| parent | Merge pull request #53 from SaberUK/clang-analyze (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; |
