summaryrefslogtreecommitdiff
path: root/src/ecommon/init.c
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-07-29 10:14:34 -0300
committerJesusaves <cpntb1@ymail.com>2021-07-29 10:14:34 -0300
commit776f5b7ef034c16990d830ac43b5352eeab10d05 (patch)
tree6bbf8d6b6b8b681721dccd86c2733c13f65ba583 /src/ecommon/init.c
parent5b2cfd68e09d5e2e45b609502f5c4f5989fc875b (diff)
downloadevol-hercules-776f5b7ef034c16990d830ac43b5352eeab10d05.tar.gz
evol-hercules-776f5b7ef034c16990d830ac43b5352eeab10d05.tar.bz2
evol-hercules-776f5b7ef034c16990d830ac43b5352eeab10d05.tar.xz
evol-hercules-776f5b7ef034c16990d830ac43b5352eeab10d05.zip
Extend party size from 12 to 15. Keep guilds within one byte
Diffstat (limited to 'src/ecommon/init.c')
-rw-r--r--src/ecommon/init.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ecommon/init.c b/src/ecommon/init.c
index 50f39ac..ebf0588 100644
--- a/src/ecommon/init.c
+++ b/src/ecommon/init.c
@@ -57,5 +57,6 @@ void common_online(void)
checkVar(MAX_EVOL_SKILLS, 75);
checkVar(EVOL_FIRST_SKILL, 20000);
checkVar(MAX_SKILL_TREE, 125);
- checkVar(BASE_GUILD_SIZE, 300);
+ checkVar(MAX_PARTY, 15);
+ checkVar(BASE_GUILD_SIZE, 255);
}