diff options
author | Peter Powell <petpow@saberuk.com> | 2018-08-07 16:45:03 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2018-08-07 16:45:03 +0100 |
commit | c51d80d9d4f2a0a38686e7dd358de0b554746331 (patch) | |
tree | b45e166994d24c5d39742c2f8247a0d38439ea0f /src/inspircd.cpp | |
parent | 54a15b0185fc53d741bc519f125aa531643dbae2 (diff) |
Remove the 'debug' snotice character.
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r-- | src/inspircd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 8ebdc3b58..bb27c718e 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -637,11 +637,11 @@ void InspIRCd::Run() /* Allow a buffer of two seconds drift on this so that ntpdate etc dont harass admins */ if (TIME.tv_sec < OLDTIME - 2) { - SNO->WriteToSnoMask('d', "\002EH?!\002 -- Time is flowing BACKWARDS in this dimension! Clock drifted backwards %lu secs.", (unsigned long)(OLDTIME-TIME.tv_sec)); + SNO->WriteToSnoMask('a', "\002EH?!\002 -- Time is flowing BACKWARDS in this dimension! Clock drifted backwards %lu secs.", (unsigned long)(OLDTIME-TIME.tv_sec)); } else if (TIME.tv_sec > OLDTIME + 2) { - SNO->WriteToSnoMask('d', "\002EH?!\002 -- Time is jumping FORWARDS! Clock skipped %lu secs.", (unsigned long)(TIME.tv_sec - OLDTIME)); + SNO->WriteToSnoMask('a', "\002EH?!\002 -- Time is jumping FORWARDS! Clock skipped %lu secs.", (unsigned long)(TIME.tv_sec - OLDTIME)); } OLDTIME = TIME.tv_sec; |