diff options
author | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-12-02 14:17:07 +0000 |
---|---|---|
committer | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-12-02 14:17:07 +0000 |
commit | eada7b359cb6f7aca97a076f4f91da532e0074b0 (patch) | |
tree | 85df121432d018d68d7f23e0a435ee92c4a073e7 /src/common | |
parent | 3769410529065beeeb2bc6ed0fba631f9c64a2e5 (diff) | |
download | hercules-eada7b359cb6f7aca97a076f4f91da532e0074b0.tar.gz hercules-eada7b359cb6f7aca97a076f4f91da532e0074b0.tar.bz2 hercules-eada7b359cb6f7aca97a076f4f91da532e0074b0.tar.xz hercules-eada7b359cb6f7aca97a076f4f91da532e0074b0.zip |
* Added defines for guild notice sizes (MAX_GUILDMES1 and MAX_GUILDMES2).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14544 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/mmo.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/common/mmo.h b/src/common/mmo.h index 6a78d840c..fd29bc211 100644 --- a/src/common/mmo.h +++ b/src/common/mmo.h @@ -147,6 +147,10 @@ #define END_ACCOUNT_NUM 100000000 #define START_CHAR_NUM 150000 +//Guilds +#define MAX_GUILDMES1 60 +#define MAX_GUILDMES2 120 + //Base Homun skill. #define HM_SKILLBASE 8001 #define MAX_HOMUNSKILL 16 @@ -474,7 +478,7 @@ struct guild { char name[NAME_LENGTH],master[NAME_LENGTH]; struct guild_member member[MAX_GUILD]; struct guild_position position[MAX_GUILDPOSITION]; - char mes1[60],mes2[120]; + char mes1[MAX_GUILDMES1],mes2[MAX_GUILDMES2]; int emblem_len,emblem_id; char emblem_data[2048]; struct guild_alliance alliance[MAX_GUILDALLIANCE]; |