Greater sound range for Zephyrs and Aerwhales.

This commit is contained in:
KingPhygieBoo 2017-12-26 17:07:33 -06:00
parent a076897c68
commit 780bd9fe96
2 changed files with 7 additions and 1 deletions

View file

@ -124,7 +124,7 @@ public class EntityZephyr extends EntityFlying implements IMob
@Override
protected float getSoundVolume()
{
return 1F;
return 3F;
}
}

View file

@ -281,6 +281,12 @@ public class EntityAerwhale extends EntityFlying implements IMob
{
return SoundsAether.aerwhale_death;
}
@Override
protected float getSoundVolume()
{
return 3F;
}
@Override
public boolean canDespawn()