summaryrefslogtreecommitdiff
path: root/src/ecommon/init.c
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-10-24 18:08:56 +0300
committerAndrei Karas <akaras@inbox.ru>2016-10-24 18:41:38 +0300
commitf53a681102feb5e5f622635c5a5933a9aa6b7693 (patch)
tree603907e6640a60e9373c83dc8733d1c24fad9a25 /src/ecommon/init.c
parent7d51e26af0f8bbd6c4788c73632d9165db6600fb (diff)
downloadevol-hercules-f53a681102feb5e5f622635c5a5933a9aa6b7693.tar.gz
evol-hercules-f53a681102feb5e5f622635c5a5933a9aa6b7693.tar.bz2
evol-hercules-f53a681102feb5e5f622635c5a5933a9aa6b7693.tar.xz
evol-hercules-f53a681102feb5e5f622635c5a5933a9aa6b7693.zip
Update skill array size after hercules update.
Diffstat (limited to 'src/ecommon/init.c')
-rw-r--r--src/ecommon/init.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ecommon/init.c b/src/ecommon/init.c
index f0955e1..7d55baf 100644
--- a/src/ecommon/init.c
+++ b/src/ecommon/init.c
@@ -44,11 +44,11 @@ void commonClean(void)
void common_online(void)
{
- checkVar(MAX_SKILL, 1500);
+ checkVar(MAX_SKILL, 1532);
checkVar(MAX_SKILL_ID, 20022);
- checkVar(SC_MAX, 647);
+ checkVar(SC_MAX, 657);
checkVar(SI_MAX, 971);
- checkVar(OLD_MAX_SKILL_DB, 1478);
+ checkVar(OLD_MAX_SKILL_DB, 1510);
checkVar(MAX_EVOL_SKILLS, 22);
checkVar(EVOL_FIRST_SKILL, 20000);
}