nmz: reformat config
This commit is contained in:
@@ -29,17 +29,17 @@ import net.runelite.client.config.ConfigGroup;
|
|||||||
import net.runelite.client.config.ConfigItem;
|
import net.runelite.client.config.ConfigItem;
|
||||||
|
|
||||||
@ConfigGroup(
|
@ConfigGroup(
|
||||||
keyName = "nightmareZone",
|
keyName = "nightmareZone",
|
||||||
name = "Nightmare Zone",
|
name = "Nightmare Zone",
|
||||||
description = "Configuration for the nightmare zone plugin"
|
description = "Configuration for the nightmare zone plugin"
|
||||||
)
|
)
|
||||||
public interface NightmareZoneConfig extends Config
|
public interface NightmareZoneConfig extends Config
|
||||||
{
|
{
|
||||||
@ConfigItem(
|
@ConfigItem(
|
||||||
keyName = "tray",
|
keyName = "tray",
|
||||||
name = "Send Tray Notification",
|
name = "Send Tray Notification",
|
||||||
description = "Toggles tray notifications",
|
description = "Toggles tray notifications",
|
||||||
position = 2
|
position = 1
|
||||||
)
|
)
|
||||||
default boolean sendTrayNotification()
|
default boolean sendTrayNotification()
|
||||||
{
|
{
|
||||||
@@ -47,10 +47,10 @@ public interface NightmareZoneConfig extends Config
|
|||||||
}
|
}
|
||||||
|
|
||||||
@ConfigItem(
|
@ConfigItem(
|
||||||
keyName = "request",
|
keyName = "request",
|
||||||
name = "Request Window Focus",
|
name = "Request Window Focus",
|
||||||
description = "Toggles window focus request",
|
description = "Toggles window focus request",
|
||||||
position = 3
|
position = 2
|
||||||
)
|
)
|
||||||
default boolean requestFocus()
|
default boolean requestFocus()
|
||||||
{
|
{
|
||||||
@@ -58,10 +58,10 @@ public interface NightmareZoneConfig extends Config
|
|||||||
}
|
}
|
||||||
|
|
||||||
@ConfigItem(
|
@ConfigItem(
|
||||||
keyName = "overloadnotification",
|
keyName = "overloadnotification",
|
||||||
name = "Overload notification",
|
name = "Overload notification",
|
||||||
description = "Toggles notifications when your overload runs out",
|
description = "Toggles notifications when your overload runs out",
|
||||||
position = 4
|
position = 3
|
||||||
)
|
)
|
||||||
default boolean overloadNotification()
|
default boolean overloadNotification()
|
||||||
{
|
{
|
||||||
@@ -69,10 +69,10 @@ public interface NightmareZoneConfig extends Config
|
|||||||
}
|
}
|
||||||
|
|
||||||
@ConfigItem(
|
@ConfigItem(
|
||||||
keyName = "absorptionnotification",
|
keyName = "absorptionnotification",
|
||||||
name = "Absorption notification",
|
name = "Absorption notification",
|
||||||
description = "Toggles notifications when your absorption points gets below your threshold",
|
description = "Toggles notifications when your absorption points gets below your threshold",
|
||||||
position = 5
|
position = 4
|
||||||
)
|
)
|
||||||
default boolean absorptionNotification()
|
default boolean absorptionNotification()
|
||||||
{
|
{
|
||||||
@@ -80,10 +80,10 @@ public interface NightmareZoneConfig extends Config
|
|||||||
}
|
}
|
||||||
|
|
||||||
@ConfigItem(
|
@ConfigItem(
|
||||||
keyName = "absorptionthreshold",
|
keyName = "absorptionthreshold",
|
||||||
name = "Absorption Threshold",
|
name = "Absorption Threshold",
|
||||||
description = "The amount of absorption points to send a notification at",
|
description = "The amount of absorption points to send a notification at",
|
||||||
position = 6
|
position = 5
|
||||||
)
|
)
|
||||||
default int absorptionThreshold()
|
default int absorptionThreshold()
|
||||||
{
|
{
|
||||||
@@ -91,10 +91,10 @@ public interface NightmareZoneConfig extends Config
|
|||||||
}
|
}
|
||||||
|
|
||||||
@ConfigItem(
|
@ConfigItem(
|
||||||
keyName = "moveoverlay",
|
keyName = "moveoverlay",
|
||||||
name = "Override NMZ overlay",
|
name = "Override NMZ overlay",
|
||||||
description = "Overrides the overlay so it doesn't conflict with other RuneLite plugins",
|
description = "Overrides the overlay so it doesn't conflict with other RuneLite plugins",
|
||||||
position = 7
|
position = 6
|
||||||
)
|
)
|
||||||
default boolean moveOverlay()
|
default boolean moveOverlay()
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user