From dac04ceb7ccc15f22f269240c78738236c53dd60 Mon Sep 17 00:00:00 2001 From: RandomityGuy <31925790+RandomityGuy@users.noreply.github.com> Date: Mon, 5 Dec 2022 12:57:17 +0530 Subject: [PATCH] fix broken SJ sound --- src/shapes/SuperJump.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shapes/SuperJump.hx b/src/shapes/SuperJump.hx index 012b4bd4..994c221a 100644 --- a/src/shapes/SuperJump.hx +++ b/src/shapes/SuperJump.hx @@ -51,7 +51,7 @@ class SuperJump extends PowerUp { public override function init(level:MarbleWorld, onFinish:Void->Void) { super.init(level, () -> { ResourceLoader.load("sound/pusuperjumpvoice.wav").entry.load(() -> { - this.pickupSound = ResourceLoader.getResource("sound/pusuperjumpvoice.wav", ResourceLoader.getAudio, this.soundResources); + this.pickupSound = ResourceLoader.getResource("data/sound/pusuperjumpvoice.wav", ResourceLoader.getAudio, this.soundResources); ResourceLoader.load("sound/dosuperjump.wav").entry.load(onFinish); }); });