summaryrefslogtreecommitdiff
path: root/src/core/cs_invite.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/cs_invite.c')
-rw-r--r--src/core/cs_invite.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/core/cs_invite.c b/src/core/cs_invite.c
index cfaedd3d8..95ab1e371 100644
--- a/src/core/cs_invite.c
+++ b/src/core/cs_invite.c
@@ -20,9 +20,9 @@ class CommandCSInvite : public Command
public:
CommandCSInvite() : Command("INVITE", 1, 1)
{
-
}
- CommandReturn Execute(User *u, std::vector<std::string> &params)
+
+ CommandReturn Execute(User *u, std::vector<ci::string> &params)
{
const char *chan = params[0].c_str();
Channel *c;
@@ -64,9 +64,6 @@ class CommandCSInvite : public Command
}
};
-
-
-
class CSInvite : public Module
{
public:
@@ -83,6 +80,4 @@ class CSInvite : public Module
}
};
-
-
MODULE_INIT("cs_invite", CSInvite)