From 7eb6cc21cee7a2c7cd7e5d34d2e3ec1566edf82f Mon Sep 17 00:00:00 2001 From: kittenchilly <23617175+kittenchilly@users.noreply.github.com> Date: Wed, 4 Mar 2026 09:30:17 -0600 Subject: [PATCH] BUGFIX: Use the unique fully open Timer Ball sprite --- src/pokeball.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pokeball.c b/src/pokeball.c index 5bbeb5c96a..2b09deb28d 100644 --- a/src/pokeball.c +++ b/src/pokeball.c @@ -1319,6 +1319,10 @@ void LoadBallGfx(u8 ballId) switch (ballId) { case BALL_DIVE: +// BUGFIX: The thrown Timer Ball has a unique fully open sprite that is never used, as it was never included in this case +#ifdef BUGFIX + case BALL_TIMER: +#endif case BALL_LUXURY: case BALL_PREMIER: break;