X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcmd_mode.cpp;h=e0d3b4242438314b07232ca14a6891f4cf33039c;hb=4cc6e5e14fdbde499481dbab5ab2ad1257b8af9c;hp=5680e1b05934b2c7022ecc16178b9582c6fbcdd5;hpb=694e307c09334c21aaf1a6c3f0b7b6d95440dd3e;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/cmd_mode.cpp b/src/cmd_mode.cpp index 5680e1b05..e0d3b4242 100644 --- a/src/cmd_mode.cpp +++ b/src/cmd_mode.cpp @@ -16,12 +16,12 @@ extern "C" DllExport Command* init_command(InspIRCd* Instance) { - return new cmd_mode(Instance); + return new CommandMode(Instance); } /** Handle /MODE */ -CmdResult cmd_mode::Handle (const char** parameters, int pcnt, userrec *user) +CmdResult CommandMode::Handle (const char** parameters, int pcnt, User *user) { ServerInstance->Modes->Process(parameters, pcnt, user, false); return CMD_SUCCESS;