ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/src/user.c
(Generate patch)

Comparing ircd-hybrid/branches/8.2.x/src/user.c (file contents):
Revision 6781 by michael, Sun Nov 15 18:45:53 2015 UTC vs.
Revision 6812 by michael, Wed Nov 18 17:43:52 2015 UTC

# Line 162 | Line 162 | report_and_set_user_flags(struct Client
162   {
163    /* If this user is being spoofed, tell them so */
164    if (IsConfDoSpoofIp(conf))
165 <    sendto_one_notice(source_p, &me, ":*** Spoofing your IP. Congrats.");
165 >    sendto_one_notice(source_p, &me, ":*** Spoofing your IP");
166  
167    /* If this user is in the exception class, set it "E lined" */
168    if (IsConfExemptKline(conf))
169    {
170      AddFlag(source_p, FLAGS_EXEMPTKLINE);
171 <    sendto_one_notice(source_p, &me, ":*** You are exempt from K/D lines. Congrats.");
171 >    sendto_one_notice(source_p, &me, ":*** You are exempt from K/D lines");
172    }
173  
174    if (IsConfExemptXline(conf))
175    {
176      AddFlag(source_p, FLAGS_EXEMPTXLINE);
177 <    sendto_one_notice(source_p, &me, ":*** You are exempt from X lines. Congrats.");
177 >    sendto_one_notice(source_p, &me, ":*** You are exempt from X lines");
178    }
179  
180    if (IsConfExemptResv(conf))
181    {
182      AddFlag(source_p, FLAGS_EXEMPTRESV);
183 <    sendto_one_notice(source_p, &me, ":*** You are exempt from resvs. Congrats.");
183 >    sendto_one_notice(source_p, &me, ":*** You are exempt from resvs");
184    }
185  
186    /* If this user is exempt from user limits set it "F lined" */
187    if (IsConfExemptLimits(conf))
188    {
189      AddFlag(source_p, FLAGS_NOLIMIT);
190 <    sendto_one_notice(source_p, &me, ":*** You are exempt from user limits. Congrats.");
190 >    sendto_one_notice(source_p, &me, ":*** You are exempt from user limits");
191    }
192  
193    if (IsConfCanFlood(conf))
194    {
195      AddFlag(source_p, FLAGS_CANFLOOD);
196 <    sendto_one_notice(source_p, &me, ":*** You are exempt from flood "
197 <                      "protection, aren't you fearsome.");
196 >    sendto_one_notice(source_p, &me, ":*** You are exempt from flood protection");
197    }
198   }
199  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines