From 78cba2b29af157bb8357c426e5e573593ab30aaf Mon Sep 17 00:00:00 2001 From: Charlie Wang Date: Wed, 19 Aug 2015 12:01:30 -0400 Subject: [PATCH] increase volume of all parties --- src/me/cwang/discosheep/BasicDiscoParty.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/me/cwang/discosheep/BasicDiscoParty.java b/src/me/cwang/discosheep/BasicDiscoParty.java index fa3097f..82c1940 100644 --- a/src/me/cwang/discosheep/BasicDiscoParty.java +++ b/src/me/cwang/discosheep/BasicDiscoParty.java @@ -43,7 +43,7 @@ public class BasicDiscoParty extends AbstractParty { this.r = new Random(); this.guestList = new ArrayList(); 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