diff options
Diffstat (limited to 'src/modules/m_customtitle.cpp')
-rw-r--r-- | src/modules/m_customtitle.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_customtitle.cpp b/src/modules/m_customtitle.cpp index 54dd9b0d0..b2933aa54 100644 --- a/src/modules/m_customtitle.cpp +++ b/src/modules/m_customtitle.cpp @@ -77,12 +77,12 @@ class CommandTitle : public Command user->WriteServ("NOTICE %s :Custom title set to '%s'",user->nick.c_str(), title.c_str()); - return CMD_LOCALONLY; + return CMD_SUCCESS; } } user->WriteServ("NOTICE %s :Invalid title credentials",user->nick.c_str()); - return CMD_LOCALONLY; + return CMD_SUCCESS; } }; |