1
0
mirror of https://github.com/anope/anope.git synced 2026-06-12 19:14:47 +02:00

Fix an inverted condition in ns_email.

This commit is contained in:
Sadie Powell
2025-12-11 10:57:54 +00:00
parent f367820714
commit aba75c1f31
+1 -1
View File
@@ -156,7 +156,7 @@ public:
}
}
if (!CheckLimitReached(source, nse->email, true))
if (CheckLimitReached(source, nse->email, true))
{
ns_set_email.Unset(nc);
return;