diff options
| author | 2013-04-11 15:11:31 -0700 | |
|---|---|---|
| committer | 2013-04-11 15:11:31 -0700 | |
| commit | 1858feabd342636df0b52780c978979b4e049fc3 (patch) | |
| tree | c00ab92b6ff6d002e6c40909587b146ba5e45612 /src/modules/m_services_account.cpp | |
| parent | Fix clang warning about IsOper() (diff) | |
| parent | Convert ISUPPORT to use a map instead of a string. (diff) | |
Merge pull request #487 from SaberUK/master+better-isupport-api
Convert ISUPPORT to use a map instead of a string.
Diffstat (limited to 'src/modules/m_services_account.cpp')
| -rw-r--r-- | src/modules/m_services_account.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_services_account.cpp b/src/modules/m_services_account.cpp index 62e96ca7c..fbf099924 100644 --- a/src/modules/m_services_account.cpp +++ b/src/modules/m_services_account.cpp @@ -128,10 +128,10 @@ class ModuleServicesAccount : public Module ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation)); } - void On005Numeric(std::string &t) + void On005Numeric(std::map<std::string, std::string>& tokens) { - ServerInstance->AddExtBanChar('R'); - ServerInstance->AddExtBanChar('U'); + tokens["EXTBAN"].push_back('R'); + tokens["EXTBAN"].push_back('U'); } /* <- :twisted.oscnet.org 330 w00t2 w00t2 w00t :is logged in as */ |
