diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-02 21:11:50 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-02 21:11:50 +0000 |
commit | 792b211d40f10e938b1041974b04e911bd5e4ba4 (patch) | |
tree | 9dcb8e7613cc5e28e4f7bc12d4f85e773d3dc2b3 /src/common | |
parent | b8cecabe98a2d0762d945a08d52f6a37587ce83d (diff) | |
download | hercules-792b211d40f10e938b1041974b04e911bd5e4ba4.tar.gz hercules-792b211d40f10e938b1041974b04e911bd5e4ba4.tar.bz2 hercules-792b211d40f10e938b1041974b04e911bd5e4ba4.tar.xz hercules-792b211d40f10e938b1041974b04e911bd5e4ba4.zip |
- Fame list size is now defined by MAX_FAME_LIST constant (mmo.h)
- Char server can now specify the max size for blacksmith/alchemist/taekwon rankers.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5435 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/mmo.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/mmo.h b/src/common/mmo.h index 04ea008bc..a58e8de86 100644 --- a/src/common/mmo.h +++ b/src/common/mmo.h @@ -106,6 +106,8 @@ #define MAX_FRIENDS 40
#define MAX_MEMOPOINTS 10
+//Size of the fame list arrays.
+#define MAX_FAME_LIST 10
//These max values can be exceeded and the char/map servers will update them with no problems
//These are just meant to minimize the updating needed between char/map servers as players login.
//Room for initial 10K accounts
|