diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-21 14:52:23 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-21 14:52:23 +0000 |
commit | eb3546a33a9689a745e6497fc9e781f4e7f9b3c1 (patch) | |
tree | 27d1ce4e1aab84a20c171ba4bc33b47baf227dfc /src/char_sql/int_guild.c | |
parent | e85f5bc390679728f16264908755a5b594055f8b (diff) | |
download | hercules-eb3546a33a9689a745e6497fc9e781f4e7f9b3c1.tar.gz hercules-eb3546a33a9689a745e6497fc9e781f4e7f9b3c1.tar.bz2 hercules-eb3546a33a9689a745e6497fc9e781f4e7f9b3c1.tar.xz hercules-eb3546a33a9689a745e6497fc9e781f4e7f9b3c1.zip |
- Added define MAX_CHARS so you can easily mod the server to support a different amount of characters per account (however, there is still the issue of hexing the client to support this change)
- Updated msg_athena.conf so it no longer uses broken english on several entries. Thanks to Scerez for the updated file.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10044 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/char_sql/int_guild.c')
-rw-r--r-- | src/char_sql/int_guild.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/char_sql/int_guild.c b/src/char_sql/int_guild.c index 4ad3ea070..9b29befb3 100644 --- a/src/char_sql/int_guild.c +++ b/src/char_sql/int_guild.c @@ -31,7 +31,7 @@ #define GUILD_ALLIANCE_TYPE_MASK 0x01 #define GUILD_ALLIANCE_REMOVE 0x08 -static char dataToHex[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'}; +static const char dataToHex[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'}; #ifndef TXT_SQL_CONVERT //Guild cache |