diff options
| author | 2021-06-20 17:42:20 +0100 | |
|---|---|---|
| committer | 2021-06-20 17:42:20 +0100 | |
| commit | 43b7e6a979a8cef48f907c565242b02a7cb36e98 (patch) | |
| tree | 647e25067cd2ccf2a17e4b4f2fccbca7e5a91403 /src/modules/m_silence.cpp | |
| parent | Show delayjoined users to themself in WHO. (diff) | |
Fix the silence TAGMSG flags being inverted in BitsToFlags.
Diffstat (limited to 'src/modules/m_silence.cpp')
| -rw-r--r-- | src/modules/m_silence.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_silence.cpp b/src/modules/m_silence.cpp index e7271e68f..042ecd3b1 100644 --- a/src/modules/m_silence.cpp +++ b/src/modules/m_silence.cpp @@ -171,9 +171,9 @@ class SilenceEntry out.push_back('P'); if (flags & SF_PRIVMSG_CHANNEL) out.push_back('p'); - if (flags & SF_TAGMSG_CHANNEL) - out.push_back('T'); if (flags & SF_TAGMSG_USER) + out.push_back('T'); + if (flags & SF_TAGMSG_CHANNEL) out.push_back('t'); if (flags & SF_EXEMPT) out.push_back('x'); |
