diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-02-10 16:26:09 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2021-02-10 16:26:09 -0500 |
commit | 20b76c6071ee6630a825aee9c34cf72efcc9a35f (patch) | |
tree | e7e0f9da1e41c1f135f19f88bcc2a3c827519e3f /include | |
parent | 0851c34bac0f38699e3442d8b79c4d7fe52ca71c (diff) |
Fix swapped route 102 berries
Diffstat (limited to 'include')
-rw-r--r-- | include/constants/berry.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/constants/berry.h b/include/constants/berry.h index fee1ee5f1..3ba59c0f5 100644 --- a/include/constants/berry.h +++ b/include/constants/berry.h @@ -35,8 +35,8 @@ // IDs for berry tree objects, indexes into berryTrees in SaveBlock1 // Named for whatever berry is initially planted there on a new game // Those with no initial berry are named "soil" -#define BERRY_TREE_ROUTE_102_ORAN 1 -#define BERRY_TREE_ROUTE_102_PECHA 2 +#define BERRY_TREE_ROUTE_102_PECHA 1 +#define BERRY_TREE_ROUTE_102_ORAN 2 #define BERRY_TREE_ROUTE_104_SOIL_1 3 #define BERRY_TREE_ROUTE_104_ORAN_1 4 #define BERRY_TREE_ROUTE_103_CHERI_1 5 |