diff options
| author | 2020-05-05 22:03:14 +0100 | |
|---|---|---|
| committer | 2020-05-05 22:03:14 +0100 | |
| commit | b755d2a778e0adb86c3b10757083c169eedb6de6 (patch) | |
| tree | 3d737ea47c535c4b60076feb26055e68f7d8aec5 /src/snomasks.cpp | |
| parent | Revert "Convert UserType to an enum class". (diff) | |
| parent | Fix shuns not being applied correctly. (diff) | |
Merge branch 'insp3' into master.
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 aa4dc3015..cf1f2554a 100644 --- a/src/snomasks.cpp +++ b/src/snomasks.cpp @@ -133,7 +133,7 @@ void Snomask::Send(char letter, const std::string& desc, const std::string& msg) for (UserManager::OperList::const_iterator i = opers.begin(); i != opers.end(); ++i) { User* user = *i; - // IsNoticeMaskSet() returns false for opers who aren't +s, no need to check for it seperately + // IsNoticeMaskSet() returns false for opers who aren't +s, no need to check for it separately if (IS_LOCAL(user) && user->IsNoticeMaskSet(letter)) user->WriteNotice(finalmsg); } |
