Fix idlenotifierconfig

This commit is contained in:
Lucwousin
2019-09-05 11:43:50 +02:00
parent a2e334bd9d
commit d3bad0447e

View File

@@ -122,7 +122,7 @@ public interface IdleNotifierConfig extends Config
@ConfigItem( @ConfigItem(
keyName = "skullNotification", keyName = "skullNotification",
name = "Skull Notification", name = "Skull Notification",
description = "Receive a notification when you skull." description = "Receive a notification when you skull.",
position = 9 position = 9
) )
default boolean showSkullNotification() default boolean showSkullNotification()
@@ -133,8 +133,8 @@ public interface IdleNotifierConfig extends Config
@ConfigItem( @ConfigItem(
keyName = "unskullNotification", keyName = "unskullNotification",
name = "Unskull Notification", name = "Unskull Notification",
description = "Receive a notification when you unskull." description = "Receive a notification when you unskull.",
position = 10, position = 10
) )
default boolean showUnskullNotification() default boolean showUnskullNotification()
{ {
@@ -211,7 +211,7 @@ public interface IdleNotifierConfig extends Config
keyName = "spec", keyName = "spec",
name = "Special Attack Energy Notification Threshold", name = "Special Attack Energy Notification Threshold",
description = "The amount of spec energy reached to send a notification at. A value of 0 will disable notification.", description = "The amount of spec energy reached to send a notification at. A value of 0 will disable notification.",
position = 17 position = 17
) )
default int getSpecEnergyThreshold() default int getSpecEnergyThreshold()
{ {
@@ -234,7 +234,7 @@ public interface IdleNotifierConfig extends Config
name = "Over Special Energy Notification", name = "Over Special Energy Notification",
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 = 19 position = 19
)
default boolean getOverSpecEnergy() default boolean getOverSpecEnergy()
{ {
return false; return false;
@@ -260,10 +260,8 @@ public interface IdleNotifierConfig extends Config
position = 21, position = 21,
group = "PvP" group = "PvP"
) )
default boolean notifyResourceDoor() default boolean notifyResourceDoor()
{ {
return false; return false;
} }
} }