fix sound

This commit is contained in:
ole 2024-12-23 22:19:58 +01:00
parent 1f4d7ef4b1
commit 2cb7ee7ee1
1 changed files with 7 additions and 7 deletions

View File

@ -18,13 +18,13 @@ public class SoundHandler {
// Wenn fehler beim erstellen von .jar mit sound hier gucken
private static HashMap<String, String> sounds = new HashMap<String, String>(Map.of(
"miss", "./Sound/water-drip.mp3",
"hit", "./Sound/hit.mp3",
"destroyed", "./Sound/hit.mp3",
"plop", "./Sound/plop.mp3",
"loose", "./Sound/loosescreenlaugh.mp3",
"win", "./Sound/win.mp3",
"yourturn", "./Sound/yourturn.mp3"
"miss", "water-drip.mp3",
"hit", "hit.mp3",
"destroyed", "hit.mp3",
"plop", "plop.mp3",
"loose", "loosescreenlaugh.mp3",
"win", "win.mp3",
"yourturn", "yourturn.mp3"
));
/**