]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_chgident.cpp
Dont echo the JOIN to the user whos speaking
[user/henk/code/inspircd.git] / src / modules / m_chgident.cpp
index 7ae98b37d57a520fc8ba7c8f52a36d06da945e29..42a4ef747ba35319a0e9bcb5a962e90ea6427e3a 100644 (file)
 
 /** Handle /CHGIDENT
  */
-class cmd_chgident : public Command
+class CommandChgident : public Command
 {
  public:
-       cmd_chgident (InspIRCd* Instance) : Command(Instance,"CHGIDENT", 'o', 2)
+       CommandChgident (InspIRCd* Instance) : Command(Instance,"CHGIDENT", 'o', 2)
        {
                this->source = "m_chgident.so";
                syntax = "<nick> <newident>";
@@ -68,13 +68,13 @@ class cmd_chgident : public Command
 
 class ModuleChgIdent : public Module
 {
-       cmd_chgident* mycommand;
+       CommandChgident* mycommand;
        
        
 public:
        ModuleChgIdent(InspIRCd* Me) : Module(Me)
        {
-               mycommand = new cmd_chgident(ServerInstance);
+               mycommand = new CommandChgident(ServerInstance);
                ServerInstance->AddCommand(mycommand);
        }