diff options
| author | 2013-04-07 22:23:25 +0100 | |
|---|---|---|
| committer | 2013-04-11 23:08:03 +0100 | |
| commit | 5c29c53f651fb0c513a50c9396e08ba340a6d2bf (patch) | |
| tree | c00ab92b6ff6d002e6c40909587b146ba5e45612 /src/modules/m_muteban.cpp | |
| parent | Fix clang warning about IsOper() (diff) | |
Convert ISUPPORT to use a map instead of a string.
Diffstat (limited to 'src/modules/m_muteban.cpp')
| -rw-r--r-- | src/modules/m_muteban.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_muteban.cpp b/src/modules/m_muteban.cpp index 2b6bedc1c..2c8a123f1 100644 --- a/src/modules/m_muteban.cpp +++ b/src/modules/m_muteban.cpp @@ -56,9 +56,9 @@ class ModuleQuietBan : public Module return OnUserPreMessage(user, dest, target_type, text, status, exempt_list); } - virtual void On005Numeric(std::string &output) + virtual void On005Numeric(std::map<std::string, std::string>& tokens) { - ServerInstance->AddExtBanChar('m'); + tokens["EXTBAN"].push_back('m'); } }; |
