diff options
author | trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-01-05 05:24:07 +0000 |
---|---|---|
committer | trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-01-05 05:24:07 +0000 |
commit | 6f72ea027805f48ebb6470254ef5ccbc67dcd0fc (patch) | |
tree | 8168025de4703d8e10d951648f626f2f1f57e61f /src/botserv.c | |
parent | bb9c7b1c7b9dfafef7637f5dc299a45496d09ac2 (diff) |
BUILD : 1.7.6 (521) BUGS : 254, 266 NOTES : Fixed up some alog() messages, and MemoServ INFO showing -1 for no hard limit
git-svn-id: svn://svn.anope.org/anope/trunk@521 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@375 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/botserv.c')
-rw-r--r-- | src/botserv.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/botserv.c b/src/botserv.c index 596f2b2f3..3124652c4 100644 --- a/src/botserv.c +++ b/src/botserv.c @@ -2456,8 +2456,7 @@ static int do_say(User * u) ci->bi->lastmsg = time(NULL); if (logchan && LogBot) anope_cmd_privmsg(ci->bi->nick, LogChannel, - ":SAY %s %s %s", u->nick, ci->name, - text); + "SAY %s %s %s", u->nick, ci->name, text); } else { syntax_error(s_BotServ, u, "SAY", BOT_SAY_SYNTAX); } @@ -2492,7 +2491,7 @@ static int do_act(User * u) text, 1); ci->bi->lastmsg = time(NULL); if (logchan && LogBot) - anope_cmd_privmsg(ci->bi->nick, LogChannel, ":ACT %s %s %s", + anope_cmd_privmsg(ci->bi->nick, LogChannel, "ACT %s %s %s", u->nick, ci->name, text); } return MOD_CONT; |