summaryrefslogtreecommitdiff
path: root/src/ecommon/init.c
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-07-01 19:51:01 +0300
committerAndrei Karas <akaras@inbox.ru>2016-07-01 19:51:01 +0300
commit7f6c805f25d34ba80ca86e53216e1d588ab1ea75 (patch)
tree615005bd9896aeb49f42b0eb0fbfc08957c4cab8 /src/ecommon/init.c
parent0d732b8e7959bc50b29874d816981d12859fb811 (diff)
downloadevol-hercules-7f6c805f25d34ba80ca86e53216e1d588ab1ea75.tar.gz
evol-hercules-7f6c805f25d34ba80ca86e53216e1d588ab1ea75.tar.bz2
evol-hercules-7f6c805f25d34ba80ca86e53216e1d588ab1ea75.tar.xz
evol-hercules-7f6c805f25d34ba80ca86e53216e1d588ab1ea75.zip
For evol skills use range 20000 - 20021
For this add mapping to array index. Also rename skill into EVOL_MASS_PROVOKE.
Diffstat (limited to 'src/ecommon/init.c')
-rw-r--r--src/ecommon/init.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ecommon/init.c b/src/ecommon/init.c
index d91792e..f0955e1 100644
--- a/src/ecommon/init.c
+++ b/src/ecommon/init.c
@@ -45,7 +45,10 @@ void commonClean(void)
void common_online(void)
{
checkVar(MAX_SKILL, 1500);
- checkVar(MAX_SKILL_ID, 10037);
+ checkVar(MAX_SKILL_ID, 20022);
checkVar(SC_MAX, 647);
checkVar(SI_MAX, 971);
+ checkVar(OLD_MAX_SKILL_DB, 1478);
+ checkVar(MAX_EVOL_SKILLS, 22);
+ checkVar(EVOL_FIRST_SKILL, 20000);
}