diff options
author | Haru <haru@dotalux.com> | 2013-08-06 21:34:31 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2013-08-12 17:14:51 +0200 |
commit | de6602f25485d0ba4c02426ab982fa8ff8a224ae (patch) | |
tree | 6b085227221b551215a15bee287bdcffba8610f5 /src/map/clif.c | |
parent | ca1f74fcd9974a8c06dee91b78a49fcb8d2b5095 (diff) | |
download | hercules-de6602f25485d0ba4c02426ab982fa8ff8a224ae.tar.gz hercules-de6602f25485d0ba4c02426ab982fa8ff8a224ae.tar.bz2 hercules-de6602f25485d0ba4c02426ab982fa8ff8a224ae.tar.xz hercules-de6602f25485d0ba4c02426ab982fa8ff8a224ae.zip |
Added support for Nick Server GHOST command
Credits to Yommy for the idea
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index d42dc4748..0d78ca488 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -2700,6 +2700,7 @@ void read_channels_config(void) { if( hChSys.irc ) { const char *irc_server, *irc_channel, *irc_nick, *irc_nick_pw; + int irc_use_ghost = 0; if( config_setting_lookup_string(settings, "irc_channel_network", &irc_server) ) { if( !strstr(irc_server,":") ) { hChSys.irc = false; @@ -2739,8 +2740,11 @@ void read_channels_config(void) { hChSys.irc = false; ShowWarning("channels.conf : irc channel enabled but irc_channel_nick wasn't found, disabling irc channel...\n"); } - if( config_setting_lookup_string(settings, "irc_channel_nick_pw", &irc_nick_pw) ) + if( config_setting_lookup_string(settings, "irc_channel_nick_pw", &irc_nick_pw) ) { safestrncpy(hChSys.irc_nick_pw, irc_nick_pw, 30); + config_setting_lookup_bool(settings, "irc_channel_use_ghost", &irc_use_ghost); + hChSys.irc_use_ghost = irc_use_ghost; + } } |