summaryrefslogtreecommitdiff
path: root/src/modules/m_chgname.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_chgname.cpp')
-rw-r--r--src/modules/m_chgname.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/modules/m_chgname.cpp b/src/modules/m_chgname.cpp
index 29fc695ab..704e142bc 100644
--- a/src/modules/m_chgname.cpp
+++ b/src/modules/m_chgname.cpp
@@ -63,15 +63,12 @@ class CommandChgname : public Command
class ModuleChgName : public Module
{
- CommandChgname* mycommand;
-
+ CommandChgname cmd;
public:
- ModuleChgName(InspIRCd* Me) : Module(Me)
+ ModuleChgName(InspIRCd* Me) : Module(Me), cmd(Me)
{
- mycommand = new CommandChgname(ServerInstance);
- ServerInstance->AddCommand(mycommand);
-
+ ServerInstance->AddCommand(&cmd);
}
virtual ~ModuleChgName()