diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-09-25 11:18:52 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-09-25 11:18:52 -0400 |
commit | 66bd1e6d3f8ddc96b9a8be7d73ff084031072292 (patch) | |
tree | b5a2525aa7a7e40f4f1e43e51ad4889cf1989167 /include | |
parent | 541eff3c73682cca8c7f6de121ea7652451c595d (diff) |
Use constants for item digits
Diffstat (limited to 'include')
-rw-r--r-- | include/constants/items.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/constants/items.h b/include/constants/items.h index 9496a4c61..95c6aacfe 100644 --- a/include/constants/items.h +++ b/include/constants/items.h @@ -497,6 +497,10 @@ #define MAX_PC_ITEM_CAPACITY 999 #define MAX_BERRY_CAPACITY 999 +#define BAG_ITEM_CAPACITY_DIGITS 2 +#define BERRY_CAPACITY_DIGITS 3 +#define MAX_ITEM_DIGITS BERRY_CAPACITY_DIGITS + // Secondary IDs for rods #define OLD_ROD 0 #define GOOD_ROD 1 |