increase volume of all parties

This commit is contained in:
Charlie Wang 2015-08-19 12:01:30 -04:00
parent eee74991c4
commit 78cba2b29a

View File

@ -43,7 +43,7 @@ public class BasicDiscoParty extends AbstractParty {
this.r = new Random(); this.r = new Random();
this.guestList = new ArrayList<LivingEntity>(); this.guestList = new ArrayList<LivingEntity>();
this.partyLocation = player.getLocation(); this.partyLocation = player.getLocation();
this.volumeMultiplier = Math.max(this.radius / 10, 1.0f); this.volumeMultiplier = 2.0f * Math.max(this.radius / 10, 1.0f);
} }
@Override @Override