X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcoremods%2Fcore_list.cpp;h=68a41e9ea6cf0da5a79d56bb2bf8e7a921ce1896;hb=0e7e1ea3935e48a5093be4ccf2371a344f30bba0;hp=d925e7c8249de607009974cfb5f83d9e45ed1e7d;hpb=aa692dc1039b63deef7886e914ec499abe7facaf;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/coremods/core_list.cpp b/src/coremods/core_list.cpp index d925e7c82..68a41e9ea 100644 --- a/src/coremods/core_list.cpp +++ b/src/coremods/core_list.cpp @@ -47,8 +47,9 @@ class CommandList : public Command } public: - /** Constructor for list. - */ + // Whether to show modes in the LIST response. + bool showmodes; + CommandList(Module* parent) : Command(parent,"LIST", 0, 0) , secretmode(creator, "secret") @@ -185,11 +186,16 @@ CmdResult CommandList::Handle(User* user, const Params& parameters) // Channel is private (+p) and user is outside/not privileged user->WriteNumeric(RPL_LIST, '*', users, ""); } - else + else if (showmodes) { - /* User is in the channel/privileged, channel is not +s */ + // Show the list response with the modes and topic. user->WriteNumeric(RPL_LIST, chan->name, users, InspIRCd::Format("[+%s] %s", chan->ChanModes(n), chan->topic.c_str())); } + else + { + // Show the list response with just the modes. + user->WriteNumeric(RPL_LIST, chan->name, users, chan->topic); + } } } user->WriteNumeric(RPL_LISTEND, "End of channel list."); @@ -208,6 +214,12 @@ class CoreModList : public Module { } + void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE + { + ConfigTag* tag = ServerInstance->Config->ConfValue("options"); + cmd.showmodes = tag->getBool("modesinlist", true); + } + void On005Numeric(std::map& tokens) CXX11_OVERRIDE { tokens["ELIST"] = "CMNTU";