X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_chgname.cpp;h=dfd3c7d3b4b2e09251041252cdb0e4da38a491d4;hb=f3f2388a81b6463e1229fa5bf2b8c427440bf406;hp=aedd75d945e40e43164d03a6dd84951cfe4a1b12;hpb=abbf70b2a35edaf17631e43027828011296924ad;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_chgname.cpp b/src/modules/m_chgname.cpp index aedd75d94..dfd3c7d3b 100644 --- a/src/modules/m_chgname.cpp +++ b/src/modules/m_chgname.cpp @@ -1,7 +1,13 @@ /* * InspIRCd -- Internet Relay Chat Daemon * - * Copyright (C) 2007 Dennis Friis + * Copyright (C) 2018 Matt Schatz + * Copyright (C) 2013, 2018 Sadie Powell + * Copyright (C) 2012-2013, 2016 Attila Molnar + * Copyright (C) 2012, 2019 Robby + * Copyright (C) 2009 Uli Schlachter + * Copyright (C) 2009 Daniel De Graaf + * Copyright (C) 2007, 2009 Dennis Friis * Copyright (C) 2007 Robin Burchell * * This file is part of InspIRCd. InspIRCd is free software: you can @@ -29,7 +35,7 @@ class CommandChgname : public Command { allow_empty_last_param = false; flags_needed = 'o'; - syntax = " "; + syntax = " :"; TRANSLATE2(TR_NICK, TR_TEXT); } @@ -81,7 +87,7 @@ public: Version GetVersion() CXX11_OVERRIDE { - return Version("Provides support for the CHGNAME command", VF_OPTCOMMON | VF_VENDOR); + return Version("Adds the /CHGNAME command which allows server operators to change the real name (gecos) of a user.", VF_OPTCOMMON | VF_VENDOR); } };