summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2020-07-30 11:50:10 +0100
committerSadie Powell <sadie@witchery.services>2020-07-30 12:00:16 +0100
commit2c9ebe040c113b3bb3717ab8c081c5dbcd3b8350 (patch)
treeda68540e22c289ebfdfe1eb52b3a429aeae0cebd /include
parent88df35c715b7d0218cffa741ac568502d7a2ee15 (diff)
Make the ERR_CANNOTSENDTOCHAN extban message less misleading.
Diffstat (limited to 'include')
-rw-r--r--include/numericbuilder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/numericbuilder.h b/include/numericbuilder.h
index 887462e12..9feceb7cb 100644
--- a/include/numericbuilder.h
+++ b/include/numericbuilder.h
@@ -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()));
}