From 210aeb1d119955121ca9b2549cf34e561b357c70 Mon Sep 17 00:00:00 2001 From: Eduardo Quezada Date: Mon, 29 Sep 2025 13:53:47 -0300 Subject: [PATCH] Fix Battle Frontier using Strange Balls (#7823) --- src/battle_tower.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/battle_tower.c b/src/battle_tower.c index 2d0cbbe11e..e215c259a4 100644 --- a/src/battle_tower.c +++ b/src/battle_tower.c @@ -1648,8 +1648,8 @@ void CreateFacilityMon(const struct TrainerMon *fmon, u16 level, u8 fixedIV, u32 SetMonData(dst, MON_DATA_TERA_TYPE, &data); } - - SetMonData(dst, MON_DATA_POKEBALL, &ball); + if (ball != BALL_STRANGE) + SetMonData(dst, MON_DATA_POKEBALL, &ball); CalculateMonStats(dst); }