From 8bdad342117ff7d29d2aa1dd96dd07935b17ba43 Mon Sep 17 00:00:00 2001 From: khbsd Date: Thu, 10 Apr 2025 12:27:44 -0500 Subject: [PATCH] fix: missing break statement (#6572) --- src/wild_encounter.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wild_encounter.c b/src/wild_encounter.c index 3a3a7d8dc7..3db2402d2f 100644 --- a/src/wild_encounter.c +++ b/src/wild_encounter.c @@ -1182,6 +1182,7 @@ static u8 GetMaxLevelOfSpeciesInWildTable(const struct WildPokemon *wildMon, u16 default: case WILD_AREA_FISHING: case WILD_AREA_HIDDEN: + break; } for (i = 0; i < numMon; i++)