diff options
author | certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-03-30 19:55:43 +0000 |
---|---|---|
committer | certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-03-30 19:55:43 +0000 |
commit | 15d01b86682e5af4ff1ad3a709680740cb5e37fe (patch) | |
tree | 2af628b2c97992981f6128b2275f4b571a178f18 /channels.c | |
parent | 751b278a9a2c6fbd0f0279922dc9d8a321815faf (diff) |
BUILD : 1.7.0 (11) BUGS : NOTES : Added channelname to entrymsgs
git-svn-id: svn://svn.anope.org/anope/trunk@11 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@6 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'channels.c')
-rw-r--r-- | channels.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/channels.c b/channels.c index 0a26e3428..94b165f79 100644 --- a/channels.c +++ b/channels.c @@ -1268,8 +1268,10 @@ static void chan_adduser2(User * user, Channel * c) } } + /* Added channelname to entrymsg - 30.03.2004, Certus */ if (c->ci && c->ci->entry_message) - notice_user(whosends(c->ci), user, "%s", c->ci->entry_message); + notice_user(whosends(c->ci), user, "[%s] %s", c->name, + c->ci->entry_message); if (s_BotServ && c->ci && c->ci->bi) { if (c->usercount == BSMinUsers) |