private static boolean shouldSilence(ISound sound) {
   return sound.getCategory() != SoundCategory.VOICE
       && sound.getCategory() != SoundCategory.MUSIC
       && sound.getClass().getName().startsWith("net.minecraft.client.audio");
 }