diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-04-14 17:57:31 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-04-14 17:57:31 +0200 |
commit | 89abc5d517154c8a6bb62b876593b03d51e8edc7 (patch) | |
tree | 44433d95836c24ade531ed883f4c7cdb665c4fd6 /src | |
parent | a6e5dbee31d9c544b5d15995fd43ce45bcd8ef78 (diff) |
Remove WALLCHOPS and WALLVOICES ISUPPORT tokens
These tokens have been deprecated in favour of STATUSMSG for a long time
Diffstat (limited to 'src')
-rw-r--r-- | src/server.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/server.cpp b/src/server.cpp index 9e58c9cff..7fd62fdf8 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -184,8 +184,7 @@ void ISupportManager::Build() tokens["STATUSMSG"] = ServerInstance->Modes->BuildPrefixes(false); tokens["TOPICLEN"] = ConvToStr(ServerInstance->Config->Limits.MaxTopic); - tokens["FNC"] = tokens["VBANLIST"] = - tokens["WALLCHOPS"] = tokens["WALLVOICES"]; + tokens["FNC"] = tokens["VBANLIST"]; // Modules can add new tokens and also edit or remove existing tokens FOREACH_MOD(On005Numeric, (tokens)); |