Fix ReportAnnouncer double to float conversion (#66)

This commit is contained in:
cswhite2000 2018-01-05 22:00:52 -08:00 committed by amactus
parent d8dd7ee812
commit 1276a6d578
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ public class ReportAnnouncer implements PluginFacet, MessageListener {
.type(new BooleanType())
.defaultValue(true).get();
private static final BukkitSound REPORT_SOUND = new BukkitSound(Sound.ENTITY_ZOMBIE_ATTACK_IRON_DOOR, 0.6, 1.5);
private static final BukkitSound REPORT_SOUND = new BukkitSound(Sound.ENTITY_ZOMBIE_ATTACK_IRON_DOOR, 0.6f, 1.5f);
private final ReportConfiguration config;
private final ReportFormatter reportFormatter;