summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/common/mmo.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/common/mmo.h b/src/common/mmo.h
index ed74f11df..a2e91626e 100644
--- a/src/common/mmo.h
+++ b/src/common/mmo.h
@@ -206,7 +206,9 @@
//Note: The client seems unable to receive data for more than 4 slots due to all related packets having a fixed size.
#define MAX_SLOTS 4
//Max amount of a single stacked item
-#define MAX_AMOUNT 30000
+#ifndef MAX_AMOUNT
+ #define MAX_AMOUNT 30000
+#endif
#define MAX_ZENY INT_MAX
//Official Limit: 2.1b ( the var that stores the money doesn't go much higher than this by default )