From 2b2d703c8a79e72ad197774ae9c262afcccfd76c Mon Sep 17 00:00:00 2001 From: Alex <93446519+AlexOn1ine@users.noreply.github.com> Date: Thu, 13 Feb 2025 19:31:50 +0100 Subject: [PATCH] Fixes Static Assert from pr #6174 (#6258) --- src/overworld.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/overworld.c b/src/overworld.c index c94c67516a..3dcb26de87 100644 --- a/src/overworld.c +++ b/src/overworld.c @@ -73,7 +73,7 @@ #include "constants/trainer_hill.h" #include "constants/weather.h" -STATIC_ASSERT((B_FLAG_FOLLOWERS_DISABLED == 0 && !OW_FOLLOWERS_ENABLED), FollowersFlagAssignedWithoutEnablingThem); +STATIC_ASSERT((B_FLAG_FOLLOWERS_DISABLED == 0 || OW_FOLLOWERS_ENABLED), FollowersFlagAssignedWithoutEnablingThem); struct CableClubPlayer {