diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/menuentryswapper/MenuEntrySwapperConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/menuentryswapper/MenuEntrySwapperConfig.java index 75e3a7eb9a..349c4a959f 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/menuentryswapper/MenuEntrySwapperConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/menuentryswapper/MenuEntrySwapperConfig.java @@ -37,6 +37,17 @@ public interface MenuEntrySwapperConfig extends Config { @ConfigItem( position = 0, + keyName = "shiftClickCustomization", + name = "Customizable shift-click", + description = "Allows customization of shift-clicks on items" + ) + default boolean shiftClickCustomization() + { + return true; + } + + @ConfigItem( + position = 1, keyName = "swapBanker", name = "Bank", description = "Swap Talk-to with Bank on Bank NPC
Example: Banker" @@ -47,7 +58,7 @@ public interface MenuEntrySwapperConfig extends Config } @ConfigItem( - position = 1, + position = 2, keyName = "swapBirdhouseEmpty", name = "Birdhouse", description = "Swap Interact with Empty for birdhouses on Fossil Island" @@ -58,7 +69,7 @@ public interface MenuEntrySwapperConfig extends Config } @ConfigItem( - position = 2, + position = 3, keyName = "swapBones", name = "Bury", description = "Swap Bury with Use on Bones" @@ -69,7 +80,7 @@ public interface MenuEntrySwapperConfig extends Config } @ConfigItem( - position = 3, + position = 4, keyName = "swapCatacombEntrance", name = "Catacomb entrance", description = "Swap Read with Investigate on Catacombs of Kourend entrance" @@ -80,7 +91,7 @@ public interface MenuEntrySwapperConfig extends Config } @ConfigItem( - position = 4, + position = 5, keyName = "swapChase", name = "Chase", description = "Allows to left click your cat to chase" @@ -91,7 +102,7 @@ public interface MenuEntrySwapperConfig extends Config } @ConfigItem( - position = 5, + position = 6, keyName = "claimSlime", name = "Claim Slime", description = "Swap Talk-to with Claim Slime from Morytania diaries" @@ -101,17 +112,6 @@ public interface MenuEntrySwapperConfig extends Config return true; } - @ConfigItem( - position = 6, - keyName = "shiftClickCustomization", - name = "Customizable shift-click", - description = "Allows customization of shift-clicks on items" - ) - default boolean shiftClickCustomization() - { - return true; - } - @ConfigItem( position = 7, keyName = "swapExchange",