summaryrefslogtreecommitdiff
path: root/include/commands
diff options
context:
space:
mode:
Diffstat (limited to 'include/commands')
-rw-r--r--include/commands/cmd_nick.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/commands/cmd_nick.h b/include/commands/cmd_nick.h
index e0264407d..c27ed2035 100644
--- a/include/commands/cmd_nick.h
+++ b/include/commands/cmd_nick.h
@@ -26,6 +26,7 @@
*/
class cmd_nick : public command_t
{
+ bool allowinvalid;
public:
/** Constructor for nick.
*/
@@ -37,6 +38,8 @@ class cmd_nick : public command_t
* @return A value from CmdResult to indicate command success or failure.
*/
CmdResult Handle(const char** parameters, int pcnt, userrec *user);
+
+ CmdResult HandleInternal(const unsigned int id, const std::deque<classbase*> &parameters);
};
#endif