mirror of
https://github.com/anope/anope.git
synced 2026-07-05 12:43:13 +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",
|
||||
|
||||
+2
-2
@@ -1627,7 +1627,7 @@ void runDefCon(void)
|
||||
if (checkDefCon(DEFCON_FORCE_CHAN_MODES)) {
|
||||
if (DefConChanModes && !DefConModesSet) {
|
||||
if (DefConChanModes[0] == '+' || DefConChanModes[0] == '-') {
|
||||
alog("DEFCON: setting %s on all chan's", DefConChanModes);
|
||||
alog("DEFCON: setting %s on all channels", DefConChanModes);
|
||||
DefConModesSet = 1;
|
||||
do_mass_mode(DefConChanModes);
|
||||
}
|
||||
@@ -1637,7 +1637,7 @@ void runDefCon(void)
|
||||
if (DefConChanModes[0] == '+' || DefConChanModes[0] == '-') {
|
||||
DefConModesSet = 0;
|
||||
if ((newmodes = defconReverseModes(DefConChanModes))) {
|
||||
alog("DEFCON: setting %s on all chan's", newmodes);
|
||||
alog("DEFCON: setting %s on all channels", newmodes);
|
||||
do_mass_mode(newmodes);
|
||||
free(newmodes);
|
||||
}
|
||||
|
||||
@@ -447,7 +447,7 @@ int anope_event_newmask(char *source, int ac, char **av)
|
||||
*/
|
||||
u->mode &= ~UMODE_NM;
|
||||
if (debug)
|
||||
alog("debug: Ignoring NEWMASK because it's send because of SVSMODE +r");
|
||||
alog("debug: Ignoring NEWMASK because it's sent because of SVSMODE +r");
|
||||
return MOD_CONT;
|
||||
}
|
||||
|
||||
|
||||
+2
-1
@@ -8,9 +8,10 @@ VERSION_MAJOR="1"
|
||||
VERSION_MINOR="8"
|
||||
VERSION_PATCH="5"
|
||||
VERSION_EXTRA="-git"
|
||||
VERSION_BUILD="3056"
|
||||
VERSION_BUILD="3057"
|
||||
|
||||
# $Log$ # Changes since 1.8.5 Release
|
||||
#Revision 3057 - Bug #1233 - Fixed some misuse of apostrophes - patch by binki
|
||||
#Revision 3056 - Bug #1227 - Fixed 'make install' recompiling src/tools
|
||||
#Revision 3055 - Do not allow services opers to send one person more than 32767 memos
|
||||
#Revision 3054 - Enable NICKIP for InspIRCd 1.2+
|
||||
|
||||
Reference in New Issue
Block a user