Add check to warn of a non-working config setup (#8686)

This commit is contained in:
FosterProgramming 2026-01-02 15:57:09 +01:00 committed by GitHub
parent 09273e7b44
commit d214d178f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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