diff options
author | Haru <haru@dotalux.com> | 2015-06-03 09:56:32 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-06-03 09:56:32 +0200 |
commit | 392a6a4755e645cd0ef194d4249661850276615f (patch) | |
tree | a7a09772928a20ec9e5b937a92742590f1dab64e /src | |
parent | 1e73244c744b509ac216e81ec021ff1638397036 (diff) | |
download | hercules-392a6a4755e645cd0ef194d4249661850276615f.tar.gz hercules-392a6a4755e645cd0ef194d4249661850276615f.tar.bz2 hercules-392a6a4755e645cd0ef194d4249661850276615f.tar.xz hercules-392a6a4755e645cd0ef194d4249661850276615f.zip |
Follow-up to 42e1df9e
- BASE_GUILD_SIZE is 16, not 10. I should stop thinking hexadecimal.
- Fixed bugreport:8718, thanks to Ness
http://herc.ws/board/tracker/issue-8718-warning-in-map-server/
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/common/mmo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/mmo.h b/src/common/mmo.h index d9cf8fa5f..766ccf182 100644 --- a/src/common/mmo.h +++ b/src/common/mmo.h @@ -119,7 +119,7 @@ #define MAX_STORAGE 600 #define MAX_GUILD_STORAGE 600 #define MAX_PARTY 12 -#define BASE_GUILD_SIZE 10 // Base guild members (without GD_EXTENSION) +#define BASE_GUILD_SIZE 16 // Base guild members (without GD_EXTENSION) #define MAX_GUILD (BASE_GUILD_SIZE+10*6) // Increased max guild members +6 per 1 extension levels [Lupus] #define MAX_GUILDPOSITION 20 // Increased max guild positions to accomodate for all members [Valaris] (removed) [PoW] #define MAX_GUILDEXPULSION 32 |