From d214d178f305c303002f64132aeee2cf44eafb5f Mon Sep 17 00:00:00 2001 From: FosterProgramming Date: Fri, 2 Jan 2026 15:57:09 +0100 Subject: [PATCH] Add check to warn of a non-working config setup (#8686) --- include/event_object_movement.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/event_object_movement.h b/include/event_object_movement.h index 4ec46709e3..b322c37f46 100644 --- a/include/event_object_movement.h +++ b/include/event_object_movement.h @@ -3,6 +3,10 @@ #include "constants/event_object_movement.h" +#if OW_BATTLE_ONLY_FORMS && !OW_POKEMON_OBJECT_EVENTS +#error "OW_POKEMON_OBJECT_EVENTS needs to be TRUE in order for OW_BATTLE_ONLY_FORMS to work." +#endif + #if OW_POKEMON_OBJECT_EVENTS == FALSE && OW_FOLLOWERS_ENABLED == TRUE #error "OW_POKEMON_OBJECT_EVENTS needs to be TRUE in order for OW_FOLLOWERS_ENABLED to work." #endif