diff options
author | Peter Powell <petpow@saberuk.com> | 2013-04-07 22:23:25 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2013-04-11 23:08:03 +0100 |
commit | 5c29c53f651fb0c513a50c9396e08ba340a6d2bf (patch) | |
tree | c00ab92b6ff6d002e6c40909587b146ba5e45612 /src/modules/m_operchans.cpp | |
parent | 295b3e7ba15a228948358bd6f23591a9cb5bf5a8 (diff) |
Convert ISUPPORT to use a map instead of a string.
Diffstat (limited to 'src/modules/m_operchans.cpp')
-rw-r--r-- | src/modules/m_operchans.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_operchans.cpp b/src/modules/m_operchans.cpp index 2ac98e90c..e986b632a 100644 --- a/src/modules/m_operchans.cpp +++ b/src/modules/m_operchans.cpp @@ -70,9 +70,9 @@ class ModuleOperChans : public Module return MOD_RES_PASSTHRU; } - void On005Numeric(std::string &output) + void On005Numeric(std::map<std::string, std::string>& tokens) { - ServerInstance->AddExtBanChar('O'); + tokens["EXTBAN"].push_back('O'); } Version GetVersion() |