From 44a6c4c0ecedd4b8575ed87775676943b019e3e7 Mon Sep 17 00:00:00 2001 From: TheXaman <48356183+TheXaman@users.noreply.github.com> Date: Tue, 4 Jan 2022 00:23:24 +0100 Subject: [PATCH] changed `EGG_MOVES_ARRAY_COUN` to 19 to include all the added egg moves (19 is max value (Buneary)) --- include/constants/daycare.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/constants/daycare.h b/include/constants/daycare.h index e412d2ab77..9af7e6f79c 100644 --- a/include/constants/daycare.h +++ b/include/constants/daycare.h @@ -21,7 +21,7 @@ #define DAYCARE_EXITED_LEVEL_MENU 2 // would be redundant with above if GF had used the same value // Array buffers -#define EGG_MOVES_ARRAY_COUNT 10 +#define EGG_MOVES_ARRAY_COUNT 19 #define EGG_LVL_UP_MOVES_ARRAY_COUNT (MAX_LEVEL_UP_MOVES > 50 ? MAX_LEVEL_UP_MOVES : 50) #endif //GUARD_DAYCARE_CONSTANTS_H