Make the ERR_CANNOTSENDTOCHAN extban message less misleading.

This commit is contained in:
Sadie Powell 2020-07-30 11:50:10 +01:00
parent 88df35c715
commit 2c9ebe040c

View File

@ -229,7 +229,7 @@ class Numerics::CannotSendTo : public Numeric::Numeric
: Numeric(ERR_CANNOTSENDTOCHAN)
{
push(chan->name);
push(InspIRCd::Format("You cannot send %s to this channel whilst %s %c: (%s) extban is set on you.",
push(InspIRCd::Format("You cannot send %s to this channel whilst %s %c: (%s) extban is set matching you.",
what.c_str(), strchr("AEIOUaeiou", extban) ? "an" : "a", extban, extbandesc.c_str()));
}