summaryrefslogtreecommitdiff
path: root/src/map/irc-bot.c
diff options
context:
space:
mode:
authorhemagx <hemagx2@gmail.com>2016-07-31 12:48:57 +0200
committerhemagx <hemagx2@gmail.com>2016-07-31 12:48:57 +0200
commitba980730589a41e0526e94fdfb07206f4dea854a (patch)
tree2a5a32431c8fc75829a157c8e252f5c9aa04c9b0 /src/map/irc-bot.c
parentbc46ac94eba15b4f5159a7fa330c93907dad7d68 (diff)
downloadhercules-ba980730589a41e0526e94fdfb07206f4dea854a.tar.gz
hercules-ba980730589a41e0526e94fdfb07206f4dea854a.tar.bz2
hercules-ba980730589a41e0526e94fdfb07206f4dea854a.tar.xz
hercules-ba980730589a41e0526e94fdfb07206f4dea854a.zip
Clean up hercules.ws leftovers
Closes #1379
Diffstat (limited to 'src/map/irc-bot.c')
-rw-r--r--src/map/irc-bot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/irc-bot.c b/src/map/irc-bot.c
index 5820ad2cf..d087588af 100644
--- a/src/map/irc-bot.c
+++ b/src/map/irc-bot.c
@@ -326,7 +326,7 @@ void irc_privmsg_ctcp(int fd, char *cmd, char *source, char *target, char *msg)
snprintf(send_string, IRC_MESSAGE_LENGTH, "NOTICE %s :\001TIME %s\001",source_nick,temp);
ircbot->send(send_string, false);
} else if( strcmpi(cmd,"VERSION") == 0 ) {
- snprintf(send_string, IRC_MESSAGE_LENGTH, "NOTICE %s :\001VERSION Hercules.ws IRC Bridge\001",source_nick);
+ snprintf(send_string, IRC_MESSAGE_LENGTH, "NOTICE %s :\001VERSION Herc.ws IRC Bridge\001",source_nick);
ircbot->send(send_string, false);
#ifdef IRCBOT_DEBUG
} else {