1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-09 13:23:12 +02:00

Fixed typo in ELINE example flags, from f to F (spamfilter) (#130)

This commit is contained in:
PeGaSuS
2021-01-29 19:11:36 +01:00
committed by GitHub
parent a6da4a5823
commit e90d661e8d
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -952,7 +952,7 @@ help Eline {
" K-Lines, G-Lines and other types of bans.";
" Syntax: ELINE <user@host> <bantypes> <expire-time> <reason> (Adds an E-Line)";
" ELINE -<user@host> (Removes an E-Line)";
" Example: ELINE *@unrealircd.org kGf 0 This user is exempt";
" Example: ELINE *@unrealircd.org kGF 0 This user is exempt";
" Valid <bantypes> are:";
" ==-Type--------Name---------------------------Explanation-----------------------==";
" k | K-Line | Bypass K-Lines ";
+2 -2
View File
@@ -1533,8 +1533,8 @@ void eline_syntax(Client *client)
sendnotice(client, "8: Bypass antimixedutf8 module");
sendnotice(client, "v: Bypass ban version { } blocks");
sendnotice(client, "Examples:");
sendnotice(client, "/ELINE *@unrealircd.org kGf 0 This user is exempt");
sendnotice(client, "/ELINE ~S:1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef kGf 0 Trusted user with this certificate fingerprint");
sendnotice(client, "/ELINE *@unrealircd.org kGF 0 This user is exempt");
sendnotice(client, "/ELINE ~S:1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef kGF 0 Trusted user with this certificate fingerprint");
sendnotice(client, "-");
sendnotice(client, "To get a list of all current ELINEs, type: /STATS except");
}