mirror of
https://github.com/anope/anope.git
synced 2026-07-10 02:23:12 +02:00
Bug #1233 - Fixed some misuse of apostrophes - patch by binki
This commit is contained in:
@@ -72,11 +72,11 @@ int do_moo(int argc, char **argv) {
|
||||
if(argc>=3) { /* We need at least 3 arguments */
|
||||
if(stricmp(argv[0],"moo")==0) { /* is it meant for us? */
|
||||
if((ci = cs_findchan(argv[2]))) { /* channel should always exist */
|
||||
anope_cmd_privmsg(ci->bi->nick, ci->name, "%cACTION moo's at %s %c",1,argv[1],1);
|
||||
return MOD_STOP; /* We've dealt with it, dont let others */
|
||||
anope_cmd_privmsg(ci->bi->nick, ci->name, "%cACTION moos at %s %c",1,argv[1],1);
|
||||
return MOD_STOP; /* We've dealt with it, don't let others */
|
||||
}
|
||||
}
|
||||
}
|
||||
return MOD_CONT; /* guess it wasnt for us, pass it on */
|
||||
return MOD_CONT; /* guess it wasn't for us, pass it on */
|
||||
}
|
||||
|
||||
|
||||
@@ -80,7 +80,7 @@ void AnopeFini(void)
|
||||
/***************************************************************************************************************************************/
|
||||
|
||||
void myHostServHelp(User *u) {
|
||||
notice(s_HostServ,u->nick, " MOO Moo's at the user!"); /* this will appear in the help list */
|
||||
notice(s_HostServ,u->nick, " MOO Moos at the user!"); /* this will appear in the help list */
|
||||
}
|
||||
|
||||
int myHostServMooHelp(User *u) {
|
||||
|
||||
@@ -177,9 +177,9 @@ void my_add_languages(void)
|
||||
{
|
||||
char *langtable_en_us[] = {
|
||||
/* LNG_NSEMAILMAX_REACHED */
|
||||
"The given email address has reached it's usage limit of %d users.",
|
||||
"The given email address has reached its usage limit of %d users.",
|
||||
/* LNG_NSEMAILMAX_REACHED_ONE */
|
||||
"The given email address has reached it's usage limit of 1 user."
|
||||
"The given email address has reached its usage limit of 1 user."
|
||||
};
|
||||
|
||||
char *langtable_nl[] = {
|
||||
|
||||
@@ -545,12 +545,12 @@ void m_AddLanguages(void)
|
||||
/* OINFO_HELP */
|
||||
"Syntax: OINFO [ADD|DEL] nick <info>\n"
|
||||
"Add or Delete Oper information for the given nick\n"
|
||||
"This will show up when any oper /ns info nick's the user.\n"
|
||||
"This will show up when any oper uses /ns info nick on the user.\n"
|
||||
"and can be used for 'tagging' users etc....",
|
||||
/* OCINFO_HELP */
|
||||
"Syntax: OINFO [ADD|DEL] chan <info>\n"
|
||||
"Add or Delete Oper information for the given channel\n"
|
||||
"This will show up when any oper /cs info's the channel.\n"
|
||||
"This will show up when any oper uses /cs info on the channel.\n"
|
||||
"and can be used for 'tagging' channels etc....",
|
||||
/* OINFO_HELP_CMD */
|
||||
" OINFO Add / Del an OperInfo line to a nick",
|
||||
|
||||
Reference in New Issue
Block a user