mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-09 18:49:03 -04:00
m_cban: Implement support for channel masks
Allows wildcards to be used
This commit is contained in:
parent
4c801a70be
commit
f6d30f8fef
@ -572,9 +572,9 @@ the network.
|
||||
Sends a message to all users with the +g snomask.
|
||||
">
|
||||
|
||||
<helpop key="cban" title="/CBAN <channel> [<duration> [:<reason>]]" value="
|
||||
Sets or removes a global channel ban. You must specify all three parameters
|
||||
to add a ban, and one parameter to remove a ban (just the channel).
|
||||
<helpop key="cban" title="/CBAN <channelmask> [<duration> [:<reason>]]" value="
|
||||
Sets or removes a global channel based ban. You must specify all three parameters
|
||||
to add a ban, and one parameter to remove a ban (just the channelmask).
|
||||
|
||||
The duration may be specified in seconds, or in the format
|
||||
1y2w3d4h5m6s - meaning one year, two weeks, three days, four hours,
|
||||
|
@ -58,7 +58,7 @@ public:
|
||||
|
||||
bool Matches(const std::string& s) CXX11_OVERRIDE
|
||||
{
|
||||
return irc::equals(matchtext, s);
|
||||
return InspIRCd::Match(s, matchtext);
|
||||
}
|
||||
|
||||
const std::string& Displayable() CXX11_OVERRIDE
|
||||
@ -94,7 +94,8 @@ class CommandCBan : public Command
|
||||
public:
|
||||
CommandCBan(Module* Creator) : Command(Creator, "CBAN", 1, 3)
|
||||
{
|
||||
flags_needed = 'o'; this->syntax = "<channel> [<duration> [:<reason>]]";
|
||||
flags_needed = 'o';
|
||||
this->syntax = "<channelmask> [<duration> [:<reason>]]";
|
||||
}
|
||||
|
||||
CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE
|
||||
|
Loading…
x
Reference in New Issue
Block a user