diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-03-05 22:23:12 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-03-05 22:26:06 +0300 |
commit | 6b230a4de27de394dd4e28662cd27070ab91c1f1 (patch) | |
tree | 58dba9c128bb7eb480472dd42d5e6b44401b74e3 /src/map/map.c | |
parent | db82d35cb549aa305df53c4f0cbe5149062161e3 (diff) | |
download | evol-hercules-6b230a4de27de394dd4e28662cd27070ab91c1f1.tar.gz evol-hercules-6b230a4de27de394dd4e28662cd27070ab91c1f1.tar.bz2 evol-hercules-6b230a4de27de394dd4e28662cd27070ab91c1f1.tar.xz evol-hercules-6b230a4de27de394dd4e28662cd27070ab91c1f1.zip |
Replace struct map_session_data to TBL_PC.
Diffstat (limited to 'src/map/map.c')
-rw-r--r-- | src/map/map.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/map.c b/src/map/map.c index a4376fe..618ae9c 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -53,7 +53,7 @@ void emap_online_list(int fd) { char *buf = aCalloc (1, 20000); char *ptr = buf; - struct map_session_data* sd; + TBL_PC* sd; struct SessionExt *data1 = session_get(fd); if (!data1) @@ -70,7 +70,7 @@ void emap_online_list(int fd) return; } - struct map_session_data* ssd = (struct map_session_data*)session[fd]->session_data; + TBL_PC* ssd = (TBL_PC*)session[fd]->session_data; if (!ssd) { aFree(buf); |