From bd023cd17ce80430666aa2b9a9209710952468c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BD=99=E5=86=A0=E8=B1=AA?= Date: Sun, 16 Nov 2025 12:46:35 +0800 Subject: [PATCH] fix: #44 pool.return(PointToaster) --> pool.return(toaster) --- bubbo-bubbo/src/game/systems/HudSystem.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bubbo-bubbo/src/game/systems/HudSystem.ts b/bubbo-bubbo/src/game/systems/HudSystem.ts index 9d88406..e4374af 100644 --- a/bubbo-bubbo/src/game/systems/HudSystem.ts +++ b/bubbo-bubbo/src/game/systems/HudSystem.ts @@ -324,6 +324,6 @@ export class HudSystem implements System { // Remove from parent toaster.view.removeFromParent(); // Return to pool - pool.return(PointToaster); + pool.return(toaster); } }