diff options
author | hemagx <hemagx2@gmail.com> | 2016-03-21 15:02:55 +0200 |
---|---|---|
committer | hemagx <hemagx2@gmail.com> | 2016-03-21 15:05:22 +0200 |
commit | 85a37f40ddf59ec819c03a43cc893f42bed6b2ac (patch) | |
tree | 51367f42c1157aad94fc035d58f1cfc66f816788 /src/common | |
parent | 504770250595fdb8f3f56400ea101a4d0d45faff (diff) | |
download | hercules-85a37f40ddf59ec819c03a43cc893f42bed6b2ac.tar.gz hercules-85a37f40ddf59ec819c03a43cc893f42bed6b2ac.tar.bz2 hercules-85a37f40ddf59ec819c03a43cc893f42bed6b2ac.tar.xz hercules-85a37f40ddf59ec819c03a43cc893f42bed6b2ac.zip |
Update Max Zeny to official value 2,147,483,647
closes #1213
Diffstat (limited to 'src/common')
-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 0abae6092..7df52e450 100644 --- a/src/common/mmo.h +++ b/src/common/mmo.h @@ -120,7 +120,7 @@ #define MAX_SLOTS 4 //Max amount of a single stacked item #define MAX_AMOUNT 30000 -#define MAX_ZENY 1000000000 +#define MAX_ZENY INT_MAX //Official Limit: 2.1b ( the var that stores the money doesn't go much higher than this by default ) #define MAX_BANK_ZENY INT_MAX |