diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-08-10 14:50:09 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-08-16 15:52:35 +0300 |
commit | 38c48c78eb1d5822565504363863918e39e0cd4a (patch) | |
tree | 740ed3f18baff57e0ac33e6e8405d217546429d3 /src/emap/atcommand.c | |
parent | 2ed4142dfcde097648857f41f8064b0a19c350c7 (diff) | |
download | plugin-38c48c78eb1d5822565504363863918e39e0cd4a.tar.gz plugin-38c48c78eb1d5822565504363863918e39e0cd4a.tar.bz2 plugin-38c48c78eb1d5822565504363863918e39e0cd4a.tar.xz plugin-38c48c78eb1d5822565504363863918e39e0cd4a.zip |
Fix compilation after HPM update in server.
Diffstat (limited to 'src/emap/atcommand.c')
-rw-r--r-- | src/emap/atcommand.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/emap/atcommand.c b/src/emap/atcommand.c index c697b22..2647169 100644 --- a/src/emap/atcommand.c +++ b/src/emap/atcommand.c @@ -1,6 +1,8 @@ // Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL. // Copyright (c) 2014 Evol developers +#include "common/hercules.h" + #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -47,7 +49,7 @@ const char* eatcommand_msgfd(int *fdPtr, int *msgPtr) { const int msg_number = *msgPtr; const int fd = *fdPtr; - struct map_session_data *sd = session_isValid(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)) { hookStop(); |