diff options
Diffstat (limited to 'src/ecommon/init.c')
-rw-r--r-- | src/ecommon/init.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ecommon/init.c b/src/ecommon/init.c index 372e5ad..d91792e 100644 --- a/src/ecommon/init.c +++ b/src/ecommon/init.c @@ -33,3 +33,19 @@ void commonClean(void) aFree(mapindex->default_map); mapindex->default_map = NULL; } + +#define checkVar(name, value) \ + if (name != value) \ + { \ + ShowError(#name" wrong value. Found %d but must be %d.\n", \ + name, \ + value); \ + } + +void common_online(void) +{ + checkVar(MAX_SKILL, 1500); + checkVar(MAX_SKILL_ID, 10037); + checkVar(SC_MAX, 647); + checkVar(SI_MAX, 971); +} |