Make the notices reporting auth{} privs a bit more serious-looking,

as in ratbox3.
This commit is contained in:
Jilles Tjoelker 2008-11-19 22:45:13 +01:00
parent 17d00839b3
commit 51e1ce904e
1 changed files with 9 additions and 9 deletions

View File

@ -802,55 +802,55 @@ report_and_set_user_flags(struct Client *source_p, struct ConfItem *aconf)
/* If this user is being spoofed, tell them so */ /* If this user is being spoofed, tell them so */
if(IsConfDoSpoofIp(aconf)) if(IsConfDoSpoofIp(aconf))
{ {
sendto_one_notice(source_p, ":*** Spoofing your IP. congrats."); sendto_one_notice(source_p, ":*** Spoofing your IP");
} }
/* If this user is in the exception class, Set it "E lined" */ /* If this user is in the exception class, Set it "E lined" */
if(IsConfExemptKline(aconf)) if(IsConfExemptKline(aconf))
{ {
SetExemptKline(source_p); SetExemptKline(source_p);
sendto_one_notice(source_p, ":*** You are exempt from K/X lines. congrats."); sendto_one_notice(source_p, ":*** You are exempt from K/X");
} }
if(IsConfExemptDNSBL(aconf)) if(IsConfExemptDNSBL(aconf))
/* kline exempt implies this, don't send both */ /* kline exempt implies this, don't send both */
if(!IsConfExemptKline(aconf)) if(!IsConfExemptKline(aconf))
sendto_one_notice(source_p, ":*** You are exempt from DNS blacklists."); sendto_one_notice(source_p, ":*** You are exempt from DNS blacklists");
/* If this user is exempt from user limits set it F lined" */ /* If this user is exempt from user limits set it F lined" */
if(IsConfExemptLimits(aconf)) if(IsConfExemptLimits(aconf))
{ {
sendto_one_notice(source_p, ":*** You are exempt from user limits. congrats."); sendto_one_notice(source_p, ":*** You are exempt from user limits");
} }
if(IsConfExemptFlood(aconf)) if(IsConfExemptFlood(aconf))
{ {
SetExemptFlood(source_p); SetExemptFlood(source_p);
sendto_one_notice(source_p, ":*** You are exempt from flood limits."); sendto_one_notice(source_p, ":*** You are exempt from flood limits");
} }
if(IsConfExemptSpambot(aconf)) if(IsConfExemptSpambot(aconf))
{ {
SetExemptSpambot(source_p); SetExemptSpambot(source_p);
sendto_one_notice(source_p, ":*** You are exempt from spambot checks."); sendto_one_notice(source_p, ":*** You are exempt from spambot checks");
} }
if(IsConfExemptJupe(aconf)) if(IsConfExemptJupe(aconf))
{ {
SetExemptJupe(source_p); SetExemptJupe(source_p);
sendto_one_notice(source_p, ":*** You are exempt from juped channel warnings."); sendto_one_notice(source_p, ":*** You are exempt from juped channel warnings");
} }
if(IsConfExemptResv(aconf)) if(IsConfExemptResv(aconf))
{ {
SetExemptResv(source_p); SetExemptResv(source_p);
sendto_one_notice(source_p, ":*** You are exempt from resvs."); sendto_one_notice(source_p, ":*** You are exempt from resvs");
} }
if(IsConfExemptShide(aconf)) if(IsConfExemptShide(aconf))
{ {
SetExemptShide(source_p); SetExemptShide(source_p);
sendto_one_notice(source_p, ":*** You are exempt from serverhiding."); sendto_one_notice(source_p, ":*** You are exempt from serverhiding");
} }
} }