summaryrefslogtreecommitdiff
path: root/src/map/channel.c
diff options
context:
space:
mode:
authormalufett <malufett.eat.my.binaries@gmail.com>2015-03-30 10:49:42 +0800
committermalufett <malufett.eat.my.binaries@gmail.com>2015-03-30 10:49:42 +0800
commit3b4b782760f381fc8e5017530077fd6cdb513e8f (patch)
treef1eb9890ebb3a3016ffa75212dfbed15b0a77bee /src/map/channel.c
parent291883f81f44deaa1a1f045cecf74089ad883dde (diff)
downloadhercules-3b4b782760f381fc8e5017530077fd6cdb513e8f.tar.gz
hercules-3b4b782760f381fc8e5017530077fd6cdb513e8f.tar.bz2
hercules-3b4b782760f381fc8e5017530077fd6cdb513e8f.tar.xz
hercules-3b4b782760f381fc8e5017530077fd6cdb513e8f.zip
Fixed Bug#8596
-http://hercules.ws/board/tracker/issue-8596-latest-build-cannot-be-compiled/?gopid=24854#entry24854 Signed-off-by: malufett <malufett.eat.my.binaries@gmail.com>
Diffstat (limited to 'src/map/channel.c')
-rw-r--r--src/map/channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/channel.c b/src/map/channel.c
index 15dcce82e..4331f6767 100644
--- a/src/map/channel.c
+++ b/src/map/channel.c
@@ -479,11 +479,11 @@ void channel_map_join(struct map_session_data *sd)
void channel_irc_join(struct map_session_data *sd)
{
+ struct channel_data *chan = ircbot->channel;
if (sd->state.autotrade || sd->state.standalone)
return;
if (!channel->config->irc_name)
return;
- struct channel_data *chan = ircbot->channel;
if (chan)
channel->join(chan, sd, NULL, false);
}