diff options
author | Haruna <haru@dotalux.com> | 2014-12-06 19:07:53 +0100 |
---|---|---|
committer | Haruna <haru@dotalux.com> | 2014-12-06 19:07:53 +0100 |
commit | 17ac03365ce89ad770cc4d7f9e802ad0847a1ebc (patch) | |
tree | 3f6b97440e15b755b8e95f8d775e8eb66967d5e6 /src/map/pc.c | |
parent | 738e39d33186a4ff1a620509a7c13d986ff43ecb (diff) | |
parent | 115104e15373eb83f8b7fd2c5681fc1305d5d402 (diff) | |
download | hercules-17ac03365ce89ad770cc4d7f9e802ad0847a1ebc.tar.gz hercules-17ac03365ce89ad770cc4d7f9e802ad0847a1ebc.tar.bz2 hercules-17ac03365ce89ad770cc4d7f9e802ad0847a1ebc.tar.xz hercules-17ac03365ce89ad770cc4d7f9e802ad0847a1ebc.zip |
Merge pull request #405 from 4144/clifext
Extend clif.c
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index c5d1eba19..4def231bc 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -5025,7 +5025,7 @@ int pc_setpos(struct map_session_data* sd, unsigned short map_index, int x, int vending->close(sd); } - if( hChSys.local && map->list[sd->bl.m].channel && idb_exists(map->list[sd->bl.m].channel->users, sd->status.char_id) ) { + if (clif->hChSys->local && map->list[sd->bl.m].channel && idb_exists(map->list[sd->bl.m].channel->users, sd->status.char_id)) { clif->chsys_left(map->list[sd->bl.m].channel,sd); } } |