From a8f7cecae1684015f47c4857b58b4805ee2c80cc Mon Sep 17 00:00:00 2001 From: freshc0w <121275444+freshc0w@users.noreply.github.com> Date: Mon, 11 Sep 2023 18:51:29 +1000 Subject: [PATCH] Commented out sound to fix Mob Junit --- .../game/components/npc/XenoAnimationController.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/core/src/main/com/csse3200/game/components/npc/XenoAnimationController.java b/source/core/src/main/com/csse3200/game/components/npc/XenoAnimationController.java index 77907c597..b25b91e00 100644 --- a/source/core/src/main/com/csse3200/game/components/npc/XenoAnimationController.java +++ b/source/core/src/main/com/csse3200/game/components/npc/XenoAnimationController.java @@ -14,10 +14,10 @@ * of the events is triggered. */ public class XenoAnimationController extends Component { - // For on collision sounds later - private static final String COLLISION_SFX = "sounds/projectiles/on_collision.mp3"; - Sound onCollisionSound = ServiceLocator.getResourceService().getAsset( - COLLISION_SFX, Sound.class); + // // For on collision sounds later + // private static final String COLLISION_SFX = "sounds/projectiles/on_collision.mp3"; + // Sound onCollisionSound = ServiceLocator.getResourceService().getAsset( + // COLLISION_SFX, Sound.class); AnimationRenderComponent animator; @Override