package net.minecraft.client.resources.sounds; import net.minecraft.sounds.SoundEvents; import net.minecraft.sounds.SoundSource; import net.minecraft.world.entity.animal.bee.Bee; public class BeeFlyingSoundInstance extends BeeSoundInstance { public BeeFlyingSoundInstance(final Bee bee) { super(bee, SoundEvents.BEE_LOOP, SoundSource.NEUTRAL); } @Override protected AbstractTickableSoundInstance getAlternativeSoundInstance() { return new BeeAggressiveSoundInstance(this.bee); } @Override protected boolean shouldSwitchSounds() { return this.bee.isAngry(); } }