diff options
Diffstat (limited to 'src/modules/m_serverban.cpp')
-rw-r--r-- | src/modules/m_serverban.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_serverban.cpp b/src/modules/m_serverban.cpp index cd9db395a..7ed663b20 100644 --- a/src/modules/m_serverban.cpp +++ b/src/modules/m_serverban.cpp @@ -45,9 +45,9 @@ class ModuleServerBan : public Module return MOD_RES_PASSTHRU; } - void On005Numeric(std::string &output) + void On005Numeric(std::map<std::string, std::string>& tokens) { - ServerInstance->AddExtBanChar('s'); + tokens["EXTBAN"].push_back('s'); } }; |