diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-07-28 15:53:33 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-07-28 15:53:33 -0300 |
commit | 5b2cfd68e09d5e2e45b609502f5c4f5989fc875b (patch) | |
tree | 8b7c72cef4405e80669342ca06bf7e7994751189 /src | |
parent | 651b304904aec8ed8db8657c927939605ab326d1 (diff) | |
download | evol-hercules-5b2cfd68e09d5e2e45b609502f5c4f5989fc875b.tar.gz evol-hercules-5b2cfd68e09d5e2e45b609502f5c4f5989fc875b.tar.bz2 evol-hercules-5b2cfd68e09d5e2e45b609502f5c4f5989fc875b.tar.xz evol-hercules-5b2cfd68e09d5e2e45b609502f5c4f5989fc875b.zip |
Increase max guild size from 100 to 300.
This will be barely enough to port CRC, but will have to do.
Diffstat (limited to 'src')
-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 8384ea1..50f39ac 100644 --- a/src/ecommon/init.c +++ b/src/ecommon/init.c @@ -57,5 +57,5 @@ void common_online(void) checkVar(MAX_EVOL_SKILLS, 75); checkVar(EVOL_FIRST_SKILL, 20000); checkVar(MAX_SKILL_TREE, 125); - checkVar(BASE_GUILD_SIZE, 100); + checkVar(BASE_GUILD_SIZE, 300); } |