diff options
| author | 2021-11-28 20:58:15 +0000 | |
|---|---|---|
| committer | 2021-11-28 20:58:15 +0000 | |
| commit | 82e5f4a8bb69f6a072c33007dc85d1acb528393b (patch) | |
| tree | 25759639b9678e59447d0af1fbc6743a6f250aae /src/snomasks.cpp | |
| parent | Move the stats and xline snomasks to their associated modules. (diff) | |
Remove unnecessary comments and reorder core snomask registration.
Diffstat (limited to 'src/snomasks.cpp')
| -rw-r--r-- | src/snomasks.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/snomasks.cpp b/src/snomasks.cpp index 42c0153ef..de90dbb1d 100644 --- a/src/snomasks.cpp +++ b/src/snomasks.cpp @@ -72,11 +72,11 @@ void SnomaskManager::WriteGlobalSno(char letter, const char* text, ...) SnomaskManager::SnomaskManager() { - EnableSnomask('c',"CONNECT"); /* Local connect notices */ - EnableSnomask('q',"QUIT"); /* Local quit notices */ - EnableSnomask('k',"KILL"); /* Kill notices */ - EnableSnomask('o',"OPER"); /* Oper up/down notices */ - EnableSnomask('a',"ANNOUNCEMENT"); /* formerly WriteOpers() - generic notices to all opers */ + EnableSnomask('a', "ANNOUNCEMENT"); + EnableSnomask('c', "CONNECT"); + EnableSnomask('k', "KILL"); + EnableSnomask('o', "OPER"); + EnableSnomask('q', "QUIT"); } bool SnomaskManager::IsSnomaskUsable(char ch) const |
