fix sound path

This commit is contained in:
Ole Wachtel 2024-10-29 12:46:38 +01:00
parent c41dfbe243
commit 9a661633b9
2 changed files with 2 additions and 1 deletions

View File

@ -2,5 +2,6 @@
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

View File

@ -11,7 +11,7 @@ public class SoundHandler {
private static boolean soundOn = true;
private static HashMap<String, String> sounds = new HashMap<String, String>(Map.of(
"hit", "~/../../Sound/water-drip.mp3"
"hit", "~/../Sound/water-drip.mp3"
));
public static void playSound(String soundName) {