diff --git a/core/src/sagittarius/model/Arrow.java b/core/src/sagittarius/model/Arrow.java index 8d25050..7e8907e 100644 --- a/core/src/sagittarius/model/Arrow.java +++ b/core/src/sagittarius/model/Arrow.java @@ -32,8 +32,8 @@ public class Arrow extends EntityQuad { private Planet crash; private Vector2 offset; - private Sound arrowLandedSound = Gdx.audio.newSound(Gdx.files.internal("core/assets/sounds/sf_fleche_plante_01.mp3")); - private Sound arrowHitSound = Gdx.audio.newSound(Gdx.files.internal("core/assets/sounds/VOXScrm_Cri wilhelm (ID 0477)_LS.wav")); + private Sound arrowLandedSound; + private Sound arrowHitSound; private ArrayList texture; // ---------- CONSTRUCTORs ---------- @@ -55,6 +55,10 @@ public class Arrow extends EntityQuad { this.landed = false; if (!preview) { + + arrowLandedSound = Gdx.audio.newSound(Gdx.files.internal("core/assets/sounds/sf_fleche_plante_01.mp3")); + arrowHitSound = Gdx.audio.newSound(Gdx.files.internal("core/assets/sounds/VOXScrm_Cri wilhelm (ID 0477)_LS.wav")); + texture = new ArrayList<>(); String path = "core/assets/arrow" + MathUtils.random(2);