diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2023-06-05 21:53:17 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2023-06-05 21:53:17 -0400 |
commit | 229bd77d401beb005edfca1b3ce387e150ddd21d (patch) | |
tree | 220d4de5d1921829089c6b8b32fa221fdfe9c2a0 /src/main/ScoreController.java | |
parent | 1709842a9ac8521f18296a79286a6361aa64bcc1 (diff) | |
download | NPEhero-229bd77d401beb005edfca1b3ce387e150ddd21d.tar.gz NPEhero-229bd77d401beb005edfca1b3ce387e150ddd21d.tar.bz2 NPEhero-229bd77d401beb005edfca1b3ce387e150ddd21d.zip |
add level priority, fix sfx volume, fix settings file reading
Diffstat (limited to 'src/main/ScoreController.java')
-rw-r--r-- | src/main/ScoreController.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/ScoreController.java b/src/main/ScoreController.java index 54dd960..2b76217 100644 --- a/src/main/ScoreController.java +++ b/src/main/ScoreController.java @@ -20,7 +20,7 @@ public class ScoreController{ score += 300*comboMultiplier; scoreProperty.setValue(score+""); comboProperty.setValue(combo +""); - System.out.println("Perfect!"); + // System.out.println("Perfect!"); } /** @@ -31,7 +31,7 @@ public class ScoreController{ score += 100*comboMultiplier; scoreProperty.setValue(score+""); comboProperty.setValue(combo+""); - System.out.println("Good"); + // System.out.println("Good"); } /** @@ -43,7 +43,7 @@ public class ScoreController{ comboMultiplier = 1; scoreProperty.setValue(score+""); comboProperty.setValue(combo+""); - System.out.println("Miss"); + // System.out.println("Miss"); } /* |