X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_ircv3_msgid.cpp;h=ca32f28a4e31e2cfcac6293ebee94278cb68c3cd;hb=3c30de43c945a387a7faf5d49ce320f8bcaa5c43;hp=8b56ba6c7a8cd5f32f0b832fdc423fe8b9c8c91b;hpb=aa692dc1039b63deef7886e914ec499abe7facaf;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_ircv3_msgid.cpp b/src/modules/m_ircv3_msgid.cpp index 8b56ba6c7..ca32f28a4 100644 --- a/src/modules/m_ircv3_msgid.cpp +++ b/src/modules/m_ircv3_msgid.cpp @@ -1,7 +1,7 @@ /* * InspIRCd -- Internet Relay Chat Daemon * - * Copyright (C) 2019 Sadie Powell + * 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 @@ -18,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) { } @@ -113,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); } };