diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-10-14 12:48:03 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-10-14 12:48:03 -0300 |
commit | 7b7ff83feaef6e5a94889e3dc506f1518733c2ca (patch) | |
tree | f95d90dc4484563f4d02dd260edb278bd1cb1b6e /src/ecommon/init.c | |
parent | 8d823b35807bc7bcbf8691b3d21f56bdb03eef45 (diff) | |
download | plugin-7b7ff83feaef6e5a94889e3dc506f1518733c2ca.tar.gz plugin-7b7ff83feaef6e5a94889e3dc506f1518733c2ca.tar.bz2 plugin-7b7ff83feaef6e5a94889e3dc506f1518733c2ca.tar.xz plugin-7b7ff83feaef6e5a94889e3dc506f1518733c2ca.zip |
Maximum Guild Size: 100
An ADM can make that value go up to 160 if needed using GD_EXTENSION skill (steps of 6)
Diffstat (limited to 'src/ecommon/init.c')
-rw-r--r-- | src/ecommon/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ecommon/init.c b/src/ecommon/init.c index faeefc1..9185ee1 100644 --- a/src/ecommon/init.c +++ b/src/ecommon/init.c @@ -52,5 +52,5 @@ void common_online(void) checkVar(MAX_EVOL_SKILLS, 22); checkVar(EVOL_FIRST_SKILL, 20000); checkVar(MAX_SKILL_TREE, 110); - checkVar(BASE_GUILD_SIZE, 32); + checkVar(BASE_GUILD_SIZE, 100); } |