From 89bf5289b1982b460e719957745a748bf64436d0 Mon Sep 17 00:00:00 2001 From: Ilia Mashkov Date: Mon, 20 Jul 2026 09:55:54 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=20=D0=BF=D1=80=D0=BE=D0=BF=D1=83=D1=89=D0=B5=D0=BD?= =?UTF-8?q?=D1=8B=D0=B9=20=D0=B0=D1=80=D0=B3=D1=83=D0=BC=D0=B5=D0=BD=D1=82?= =?UTF-8?q?=20=D0=BF=D1=80=D0=B8=20=D1=81=D0=BE=D0=B7=D0=B4=D0=B0=D0=BD?= =?UTF-8?q?=D0=B8=D0=B8=20=D0=BA=D0=BB=D0=BE=D0=BD=D0=BE=D0=B2=20=D0=BC?= =?UTF-8?q?=D1=8F=D1=87=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/view.js b/src/view.js index de776d6..b1a5efd 100644 --- a/src/view.js +++ b/src/view.js @@ -158,7 +158,7 @@ export function managePerkViewsLifetime(views, game, container, textures) { for (const ball of game.balls) { if (!views.balls.has(ball)) { - const ballView = createBallView(ball); + const ballView = createBallView(ball, textures['/sprites/fire_ball_1.png']); container.addChild(ballView); views.balls.set(ball, ballView); }