diff options
author | brianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-11-09 18:42:44 +0000 |
---|---|---|
committer | brianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-11-09 18:42:44 +0000 |
commit | 27fe462f9792345bcc4917891cd48f2d24b8ee73 (patch) | |
tree | f83475e8521183201a4a46ed479cd671851dde8f /src | |
parent | 61c5676bfe3ee9dcb6fd3f5d06fd9fdf9c54b037 (diff) | |
download | hercules-27fe462f9792345bcc4917891cd48f2d24b8ee73.tar.gz hercules-27fe462f9792345bcc4917891cd48f2d24b8ee73.tar.bz2 hercules-27fe462f9792345bcc4917891cd48f2d24b8ee73.tar.xz hercules-27fe462f9792345bcc4917891cd48f2d24b8ee73.zip |
- Added comments about the max ***_REG_NUM defines in mmo.h
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16892 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src')
-rw-r--r-- | src/common/mmo.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/mmo.h b/src/common/mmo.h index 8916cd9fb..5f6108b33 100644 --- a/src/common/mmo.h +++ b/src/common/mmo.h @@ -80,9 +80,9 @@ #define MAX_FAME 1000000000 #define MAX_CART 100 #define MAX_SKILL 3100 -#define GLOBAL_REG_NUM 256 -#define ACCOUNT_REG_NUM 64 -#define ACCOUNT_REG2_NUM 16 +#define GLOBAL_REG_NUM 256 // max permanent character variables per char +#define ACCOUNT_REG_NUM 64 // max permanent local account variables per account +#define ACCOUNT_REG2_NUM 16 // max permanent global account variables per account //Should hold the max of GLOBAL/ACCOUNT/ACCOUNT2 (needed for some arrays that hold all three) #define MAX_REG_NUM 256 #define DEFAULT_WALK_SPEED 150 |