diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/pvptools/PvpToolsConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/pvptools/PvpToolsConfig.java index bd1fbe4319..83e25ffdc6 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/pvptools/PvpToolsConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/pvptools/PvpToolsConfig.java @@ -39,33 +39,11 @@ public interface PvpToolsConfig extends Config return true; } - @ConfigItem( - keyName = "fallInHelper", - name = "Fall In Helper", - description = "Hides all non-friendly player entities other than the one that is attacking you.", - position = 2 - ) - default boolean fallInHelper() - { - return true; - } - - @ConfigItem( - keyName = "hotkey", - name = "Fall In Hotkey", - description = "Turns the fall in helper on or off when you press this hotkey", - position = 3 - ) - default Keybind hotkey() - { - return Keybind.NOT_SET; - } - @ConfigItem( keyName = "renderSelfHotkey", name = "Render Self Hotkey", description = "Toggles renderself when you press the hotkey", - position = 4 + position = 2 ) default Keybind renderSelf() { @@ -76,7 +54,7 @@ public interface PvpToolsConfig extends Config keyName = "hideAttack", name = "Hide attack", description = "Hides the attack option for clanmates, friends, or both", - position = 5 + position = 3 ) default boolean hideAttack() { @@ -87,7 +65,7 @@ public interface PvpToolsConfig extends Config keyName = "hideAttackMode", name = "Mode", description = "", - position = 6, + position = 4, hidden = true, unhide = "hideAttack" ) @@ -100,7 +78,7 @@ public interface PvpToolsConfig extends Config keyName = "hideCast", name = "Hide cast", description = "Hides the cast option for clanmates, friends, or both", - position = 7 + position = 5 ) default boolean hideCast() { @@ -111,7 +89,7 @@ public interface PvpToolsConfig extends Config keyName = "hideCastMode", name = "Mode", description = "", - position = 8, + position = 6, hidden = true, unhide = "hideCast" ) @@ -124,7 +102,7 @@ public interface PvpToolsConfig extends Config keyName = "hideCastIgnored", name = "Ignored spells", description = "Spells that should not be hidden from being cast, separated by a comma", - position = 9, + position = 7, hidden = true, unhide = "hideCast" ) @@ -137,7 +115,7 @@ public interface PvpToolsConfig extends Config keyName = "riskCalculator", name = "Risk Calculator", description = "Enables a panel in the PvP Tools Panel that shows the players current risk", - position = 10 + position = 8 ) default boolean riskCalculatorEnabled() { @@ -148,7 +126,7 @@ public interface PvpToolsConfig extends Config keyName = "missingPlayers", name = "Missing CC Players", description = "Adds a button to the PvP Tools panel that opens a window showing which CC members are not at the current players location", - position = 11 + position = 9 ) default boolean missingPlayersEnabled() { @@ -159,7 +137,7 @@ public interface PvpToolsConfig extends Config keyName = "currentPlayers", name = "Current CC Players", description = "Adds a button to the PvP Tools panel that opens a window showing which CC members currently at the players location", - position = 12 + position = 10 ) default boolean currentPlayersEnabled() {