X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_ircv3_msgid.cpp;h=ca32f28a4e31e2cfcac6293ebee94278cb68c3cd;hb=80e81e3b81b779901fd9d67f8ae030ee30c0bcec;hp=4d34455b94b1f2c8747e1470114ef1e721badca7;hpb=ba8a3b236a84d42c888a93e4e8cf934062c7a7ea;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_ircv3_msgid.cpp b/src/modules/m_ircv3_msgid.cpp index 4d34455b9..ca32f28a4 100644 --- a/src/modules/m_ircv3_msgid.cpp +++ b/src/modules/m_ircv3_msgid.cpp @@ -1,8 +1,7 @@ /* * InspIRCd -- Internet Relay Chat Daemon * - * Copyright (C) 2019 Peter Powell - * Copyright (C) 2016 Attila Molnar + * Copyright (C) 2019-2020 Sadie Powell * * This file is part of InspIRCd. InspIRCd is free software: you can * redistribute it and/or modify it under the terms of the GNU General Public @@ -19,18 +18,17 @@ #include "inspircd.h" -#include "modules/cap.h" #include "modules/ctctags.h" class MsgIdTag : public ClientProtocol::MessageTagProvider { private: - Cap::Reference ctctagcap; + CTCTags::CapReference ctctagcap; public: MsgIdTag(Module* mod) : ClientProtocol::MessageTagProvider(mod) - , ctctagcap(mod, "message-tags") + , ctctagcap(mod) { } @@ -114,7 +112,7 @@ class ModuleMsgId Version GetVersion() CXX11_OVERRIDE { - return Version("Provides the msgid IRCv3 tag", VF_VENDOR); + return Version("Provides support for the IRCv3 Message IDs specification.", VF_VENDOR); } };