Update IdleNotifierConfig.java

This commit is contained in:
Kyleeld
2019-06-12 13:05:59 +01:00
committed by GitHub
parent 7e6818ab0a
commit 0d0a3f1edb

View File

@@ -48,7 +48,8 @@ public interface IdleNotifierConfig extends Config
description = "Plays a custom sound accompanying Idle Animation notifications", description = "Plays a custom sound accompanying Idle Animation notifications",
position = 2 position = 2
) )
default boolean animationIdleSound() { default boolean animationIdleSound()
{
return false; return false;
} }
@@ -69,7 +70,8 @@ public interface IdleNotifierConfig extends Config
description = "Plays a custom sound accompanying Idle Interaction notifications", description = "Plays a custom sound accompanying Idle Interaction notifications",
position = 4 position = 4
) )
default boolean interactionIdleSound() { default boolean interactionIdleSound()
{
return false; return false;
} }
@@ -90,7 +92,8 @@ public interface IdleNotifierConfig extends Config
description = "Plays a custom sound whenever you leave combat", description = "Plays a custom sound whenever you leave combat",
position = 6 position = 6
) )
default boolean outOfCombatSound() { default boolean outOfCombatSound()
{
return false; return false;
} }
@@ -144,7 +147,8 @@ public interface IdleNotifierConfig extends Config
description = "Will play a sound for every Low Health notification sent", description = "Will play a sound for every Low Health notification sent",
position = 12 position = 12
) )
default boolean getPlayHealthSound() { default boolean getPlayHealthSound()
{
return false; return false;
} }
@@ -165,7 +169,8 @@ public interface IdleNotifierConfig extends Config
description = "Will play a sound for every Low Prayer notification sent", description = "Will play a sound for every Low Prayer notification sent",
position = 13 position = 13
) )
default boolean getPlayPrayerSound() { default boolean getPlayPrayerSound()
{
return false; return false;
} }
@@ -197,7 +202,8 @@ public interface IdleNotifierConfig extends Config
description = "Plays a custom sound accompanying Special Attack energy notifications", description = "Plays a custom sound accompanying Special Attack energy notifications",
position = 16 position = 16
) )
default boolean getSpecSound() { default boolean getSpecSound()
{
return false; return false;
} }
@@ -207,7 +213,8 @@ public interface IdleNotifierConfig extends Config
description = "Will repeat notifications for any value over the special energy threshold", description = "Will repeat notifications for any value over the special energy threshold",
position = 17 position = 17
) )
default boolean getOverSpecEnergy() { default boolean getOverSpecEnergy()
{
return false; return false;
} }