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/map.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/map.c')
-rw-r--r-- | src/emap/map.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/emap/map.c b/src/emap/map.c index 55f4245..c6c722c 100644 --- a/src/emap/map.c +++ b/src/emap/map.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> @@ -70,7 +72,7 @@ void emap_online_list(int fd) return; } - TBL_PC* ssd = (TBL_PC*)session[fd]->session_data; + TBL_PC* ssd = (TBL_PC*)sockt->session[fd]->session_data; if (!ssd) { aFree(buf); |