diff --git a/src/detective/HitsoundDetective.java b/src/detective/HitsoundDetective.java index 730011c..b3f577d 100644 --- a/src/detective/HitsoundDetective.java +++ b/src/detective/HitsoundDetective.java @@ -66,11 +66,11 @@ public ModResponse mod() { Set physicalHS = new HashSet<>(); Arrays.stream(hitsounds).forEach(hs -> { physicalHS.add(hs.getName()); - if (!hs.getName().endsWith(".wav")) { - wrongFormatHitSounds.add(hs.getName()); - } +// if (!hs.getName().endsWith(".wav")) { +// wrongFormatHitSounds.add(hs.getName()); +// } }); - wrongFormatHitSounds.forEach(hs -> all.addMistake(new Mistake(MistakeType.WrongFormatHitsound, hs))); +// wrongFormatHitSounds.forEach(hs -> all.addMistake(new Mistake(MistakeType.WrongFormatHitsound, hs))); unusedHitsounds = new HashSet<>(physicalHS); unusedHitsounds.removeAll(usedHitsound);