diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-08-24 17:26:13 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-08-24 17:26:13 -0300 |
commit | a89585e050356c325f98f234cfac415a5d2f90b3 (patch) | |
tree | b6f8a1e784a7297e352d08f5272fc0b8f26a9f58 | |
parent | dd7d9ed813bbba25915200533223931ab3ff0d6a (diff) | |
download | evol-hercules-a89585e050356c325f98f234cfac415a5d2f90b3.tar.gz evol-hercules-a89585e050356c325f98f234cfac415a5d2f90b3.tar.bz2 evol-hercules-a89585e050356c325f98f234cfac415a5d2f90b3.tar.xz evol-hercules-a89585e050356c325f98f234cfac415a5d2f90b3.zip |
Lower cart slots from 100 to 50.
-rw-r--r-- | src/ecommon/init.c | 1 | ||||
-rwxr-xr-x | tools/vars.sh | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/ecommon/init.c b/src/ecommon/init.c index fe74649..00a98bc 100644 --- a/src/ecommon/init.c +++ b/src/ecommon/init.c @@ -53,4 +53,5 @@ void common_online(void) checkVar(MAX_EVOL_SKILLS, 62); checkVar(EVOL_FIRST_SKILL, 20000); checkVar(MAX_SKILL_TREE, 110); + checkVar(MAX_CART, 50); } diff --git a/tools/vars.sh b/tools/vars.sh index 97f3225..b467c48 100755 --- a/tools/vars.sh +++ b/tools/vars.sh @@ -11,5 +11,5 @@ # can be used for custom skill id: 10016 - 10036+20 -export VARS=" -DOLD_MAX_SKILL_DB=1510 -DMAX_STORAGE=500 -DMAX_SKILL_DB=1572 -DMAX_SKILL_ID=20062 -DMAX_EVOL_SKILLS=62 -DEVOL_FIRST_SKILL=20000 -DMAX_SKILL_TREE=110 -DSC_MAX=658 -DSI_MAX=991 -DMIN_PACKET_DB=0x63 -DMAX_PACKET_DB=0x7531" +export VARS=" -DOLD_MAX_SKILL_DB=1510 -DMAX_STORAGE=500 -DMAX_SKILL_DB=1572 -DMAX_SKILL_ID=20062 -DMAX_EVOL_SKILLS=62 -DEVOL_FIRST_SKILL=20000 -DMAX_SKILL_TREE=110 -DSC_MAX=658 -DSI_MAX=991 -DMAX_CART 50 -DMIN_PACKET_DB=0x63 -DMAX_PACKET_DB=0x7531" export CPPFLAGS="${VARS}" |