summaryrefslogtreecommitdiff
path: root/src/char/char.h
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2015-09-30 13:00:23 +0200
committerHaru <haru@dotalux.com>2015-10-11 00:24:23 +0200
commit845139091f0305d264800491ce25152856c20374 (patch)
tree6973517e1821f128b36955fc258419131b98f7fc /src/char/char.h
parent868d131d6f968bc65746afe1247c10e4a55e8186 (diff)
downloadhercules-845139091f0305d264800491ce25152856c20374.tar.gz
hercules-845139091f0305d264800491ce25152856c20374.tar.bz2
hercules-845139091f0305d264800491ce25152856c20374.tar.xz
hercules-845139091f0305d264800491ce25152856c20374.zip
Changed chr->server[].maps to a VECTOR
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/char/char.h')
-rw-r--r--src/char/char.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/char/char.h b/src/char/char.h
index e79cc1898..fe6c0b9da 100644
--- a/src/char/char.h
+++ b/src/char/char.h
@@ -49,8 +49,7 @@ struct mmo_map_server {
uint32 ip;
uint16 port;
int users;
- unsigned short *map;
- unsigned short maps;
+ VECTOR_DECL(uint16) maps;
};
#define MAX_MAP_SERVERS 2