Fix ReportAnnouncer double to float conversion (#66)
This commit is contained in:
parent
d8dd7ee812
commit
1276a6d578
|
@ -32,7 +32,7 @@ public class ReportAnnouncer implements PluginFacet, MessageListener {
|
||||||
.type(new BooleanType())
|
.type(new BooleanType())
|
||||||
.defaultValue(true).get();
|
.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 ReportConfiguration config;
|
||||||
private final ReportFormatter reportFormatter;
|
private final ReportFormatter reportFormatter;
|
||||||
|
|
Loading…
Reference in New Issue