diff options
| author | Adam <Adam@anope.org> | 2012-02-08 18:00:24 -0500 |
|---|---|---|
| committer | Adam <Adam@anope.org> | 2012-02-08 18:00:24 -0500 |
| commit | 1bc8e2ab82db9ce00faaa44887338873a2cd9210 (patch) | |
| tree | 22523f23f143af444fbb79fdc252966b2e44c5ff /include | |
| parent | 089c85b27e0674dc8102b15e507ebdd7386eeb87 (diff) | |
Removed operserv:notifications in favor of log blocks, as well as some other notifiications
Diffstat (limited to 'include')
| -rw-r--r-- | include/config.h | 12 | ||||
| -rw-r--r-- | include/logger.h | 6 |
2 files changed, 3 insertions, 15 deletions
diff --git a/include/config.h b/include/config.h index b411cb897..cb0029c0d 100644 --- a/include/config.h +++ b/include/config.h @@ -598,18 +598,6 @@ class CoreExport ServerConfig bool KillonSNline; /* Kill users on SQline */ bool KillonSQline; - /* Send a WALLOPS/GLOBOPS when a user opers */ - bool WallOper; - /* Send a WALLOPS/GLOBOPS when a nonoper tries to use OperServ */ - bool WallBadOS; - /* Send a WALLOPS/GLOBOPS when an akill expires */ - bool WallAkillExpire; - /* Send a WALLOPS/GLOBOPS when SNLines expire */ - bool WallSNLineExpire; - /* Send a WALLOPS/GLOBOPS when SQLines expire */ - bool WallSQLineExpire; - /* Send a WALLOPS/GLOBOPS when exceptions expire */ - bool WallExceptionExpire; /* Add the akillers nick to the akill reason */ bool AddAkiller; /* Add akill ids to akill reason */ diff --git a/include/logger.h b/include/logger.h index 5f611b277..3ba93a1e9 100644 --- a/include/logger.h +++ b/include/logger.h @@ -55,12 +55,12 @@ class CoreExport Log Log(User *u, Channel *c, const Anope::string &category = ""); /* LOG_USER */ - explicit Log(User *u, const Anope::string &category = ""); + explicit Log(User *u, const Anope::string &category = "", BotInfo *bi = NULL); /* LOG_SERVER */ - Log(Server *s, const Anope::string &category = ""); + explicit Log(Server *s, const Anope::string &category = "", BotInfo *bi = NULL); - Log(BotInfo *b, const Anope::string &category = ""); + explicit Log(BotInfo *b, const Anope::string &category = ""); ~Log(); |
