1
0
mirror of https://github.com/anope/anope.git synced 2026-07-10 15:23:12 +02:00

Stop inconsistently apologising in error messages.

This commit is contained in:
Sadie Powell
2025-11-25 00:07:08 +00:00
parent e0331dae2a
commit 20a8fcc574
13 changed files with 55 additions and 55 deletions
+1 -1
View File
@@ -185,7 +185,7 @@ class CommandCSFlags final
unsigned access_max = Config->GetModule("chanserv").Get<unsigned>("accessmax", "1000");
if (access_max && ci->GetDeepAccessCount() >= access_max)
{
source.Reply(_("Sorry, you can only have %d access entries on a channel, including access entries from other channels."), access_max);
source.Reply(_("You can only have %d access entries on a channel, including access entries from other channels."), access_max);
return;
}