]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Make the ERR_CANNOTSENDTOCHAN extban message less misleading.
authorSadie Powell <sadie@witchery.services>
Thu, 30 Jul 2020 10:50:10 +0000 (11:50 +0100)
committerSadie Powell <sadie@witchery.services>
Thu, 30 Jul 2020 11:00:16 +0000 (12:00 +0100)
include/numericbuilder.h

index 887462e1281bfee37352c43986794aedfb2cc2e9..9feceb7cbe51bb74739370db8005b5361fa6b982 100644 (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()));
        }