aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_allowinvite.cpp
diff options
context:
space:
mode:
authorGravatar Attila Molnar2016-02-25 16:12:09 +0100
committerGravatar Attila Molnar2016-02-25 16:12:09 +0100
commitda29af8cba49d51e53d6e68237ccbf6370b6dd1f (patch)
tree5546764f28ff9457efa3a0f90ae6778953590293 /src/modules/m_allowinvite.cpp
parentAdd Numeric::Numeric (diff)
downloadinspircd++-da29af8cba49d51e53d6e68237ccbf6370b6dd1f.tar.gz
inspircd++-da29af8cba49d51e53d6e68237ccbf6370b6dd1f.tar.bz2
inspircd++-da29af8cba49d51e53d6e68237ccbf6370b6dd1f.zip
Convert WriteNumeric() calls to pass the parameters of the numeric as method parameters
Diffstat (limited to 'src/modules/m_allowinvite.cpp')
-rw-r--r--src/modules/m_allowinvite.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_allowinvite.cpp b/src/modules/m_allowinvite.cpp
index 05e76113a..6a4db1822 100644
--- a/src/modules/m_allowinvite.cpp
+++ b/src/modules/m_allowinvite.cpp
@@ -47,7 +47,7 @@ class ModuleAllowInvite : public Module
if (res == MOD_RES_DENY)
{
// Matching extban, explicitly deny /invite
- user->WriteNumeric(ERR_CHANOPRIVSNEEDED, "%s :You are banned from using INVITE", channel->name.c_str());
+ user->WriteNumeric(ERR_CHANOPRIVSNEEDED, channel->name, "You are banned from using INVITE");
return res;
}
if (channel->IsModeSet(ni) || res == MOD_RES_ALLOW)