diff options
author | Haru <haru@dotalux.com> | 2015-08-09 02:17:43 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-08-15 00:51:41 +0200 |
commit | f8edb93a6a26cd81eeaad0eac23e33da7740c8b4 (patch) | |
tree | e1d6ef1a867613be7d8d0384c93c9767867a91a3 /src/map/atcommand.c | |
parent | b0210e25675b0b3e950a0ee13ae8652360d84386 (diff) | |
download | hercules-f8edb93a6a26cd81eeaad0eac23e33da7740c8b4.tar.gz hercules-f8edb93a6a26cd81eeaad0eac23e33da7740c8b4.tar.bz2 hercules-f8edb93a6a26cd81eeaad0eac23e33da7740c8b4.tar.xz hercules-f8edb93a6a26cd81eeaad0eac23e33da7740c8b4.zip |
Moved session array into the socket interface
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index b84546054..6c5a6282e 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -83,7 +83,7 @@ const char* atcommand_msgsd(struct map_session_data *sd, int msg_number) { } const char* atcommand_msgfd(int fd, int msg_number) { - struct map_session_data *sd = sockt->session_is_valid(fd) ? session[fd]->session_data : NULL; + struct map_session_data *sd = sockt->session_is_valid(fd) ? sockt->session[fd]->session_data : NULL; if( !(msg_number >= 0 && msg_number < MAX_MSG) ) return "??"; if( !sd || sd->lang_id >= atcommand->max_message_table || !atcommand->msg_table[sd->lang_id][msg_number] ) |