diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-01-10 00:07:04 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-01-10 00:07:04 -0300 |
commit | cf5dae27bd6227877e72cb68f4e360be2bc28094 (patch) | |
tree | 89b7370124171eaa434fd69518a2791c32f42c30 /src/ecommon/init.c | |
parent | c87e652672523fd3e37e67f015924e837eecc4df (diff) | |
parent | c687d2d1b2ad48b5b15899f34b73a41ae73f674c (diff) | |
download | evol-hercules-cf5dae27bd6227877e72cb68f4e360be2bc28094.tar.gz evol-hercules-cf5dae27bd6227877e72cb68f4e360be2bc28094.tar.bz2 evol-hercules-cf5dae27bd6227877e72cb68f4e360be2bc28094.tar.xz evol-hercules-cf5dae27bd6227877e72cb68f4e360be2bc28094.zip |
Merge branch 'master' into tmw2
Diffstat (limited to 'src/ecommon/init.c')
-rw-r--r-- | src/ecommon/init.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ecommon/init.c b/src/ecommon/init.c index 69d4f4f..664522c 100644 --- a/src/ecommon/init.c +++ b/src/ecommon/init.c @@ -8,6 +8,11 @@ #include <string.h> #include "common/HPMi.h" + +HPExport struct HPMi_interface HPMi_s; +HPExport struct HPMi_interface *HPMi; +HPExport void *(*import_symbol) (char *name, unsigned int pID); + #include "common/conf.h" #include "common/memmgr.h" #include "common/mapindex.h" @@ -54,4 +59,5 @@ void common_online(void) checkVar(MAX_EVOL_SKILLS, 62); checkVar(EVOL_FIRST_SKILL, 20000); checkVar(MAX_SKILL_TREE, 110); + checkVar(BASE_GUILD_SIZE, 100); } |