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