Spaces:
Build error
Build error
package net.minecraft.client.resources.sounds; | |
import net.minecraft.sounds.SoundEvents; | |
import net.minecraft.sounds.SoundSource; | |
import net.minecraft.world.entity.animal.Bee; | |
import net.minecraftforge.api.distmarker.Dist; | |
import net.minecraftforge.api.distmarker.OnlyIn; | |
public class BeeFlyingSoundInstance extends BeeSoundInstance { | |
public BeeFlyingSoundInstance(Bee p_119615_) { | |
super(p_119615_, SoundEvents.BEE_LOOP, SoundSource.NEUTRAL); | |
} | |
protected AbstractTickableSoundInstance getAlternativeSoundInstance() { | |
return new BeeAggressiveSoundInstance(this.bee); | |
} | |
protected boolean shouldSwitchSounds() { | |
return this.bee.isAngry(); | |
} | |
} |