Merge pull request #3483 from MagicfTail/Alphabetical-order

MenuEntrySwapper: Reorder config items to alphabetical order
This commit is contained in:
Tomas Slusny
2018-05-30 12:17:28 +02:00
committed by GitHub

View File

@@ -48,6 +48,17 @@ public interface MenuEntrySwapperConfig extends Config
@ConfigItem( @ConfigItem(
position = 1, position = 1,
keyName = "swapBirdhouseEmpty",
name = "Birdhouse",
description = "Swap Interact with Empty for birdhouses on Fossil Island"
)
default boolean swapBirdhouseEmpty()
{
return true;
}
@ConfigItem(
position = 2,
keyName = "swapBones", keyName = "swapBones",
name = "Bury", name = "Bury",
description = "Swap Bury with Use on Bones" description = "Swap Bury with Use on Bones"
@@ -58,7 +69,7 @@ public interface MenuEntrySwapperConfig extends Config
} }
@ConfigItem( @ConfigItem(
position = 2, position = 3,
keyName = "swapCatacombEntrance", keyName = "swapCatacombEntrance",
name = "Catacomb entrance", name = "Catacomb entrance",
description = "Swap Read with Investigate on Catacombs of Kourend entrance" description = "Swap Read with Investigate on Catacombs of Kourend entrance"
@@ -69,7 +80,7 @@ public interface MenuEntrySwapperConfig extends Config
} }
@ConfigItem( @ConfigItem(
position = 3, position = 4,
keyName = "swapChase", keyName = "swapChase",
name = "Chase", name = "Chase",
description = "Allows to left click your cat to chase" description = "Allows to left click your cat to chase"
@@ -80,7 +91,18 @@ public interface MenuEntrySwapperConfig extends Config
} }
@ConfigItem( @ConfigItem(
position = 4, position = 5,
keyName = "claimSlime",
name = "Claim Slime",
description = "Swap Talk-to with Claim Slime from Morytania diaries"
)
default boolean claimSlime()
{
return true;
}
@ConfigItem(
position = 6,
keyName = "shiftClickCustomization", keyName = "shiftClickCustomization",
name = "Customizable shift-click", name = "Customizable shift-click",
description = "Allows customization of shift-clicks on items" description = "Allows customization of shift-clicks on items"
@@ -91,7 +113,7 @@ public interface MenuEntrySwapperConfig extends Config
} }
@ConfigItem( @ConfigItem(
position = 5, position = 7,
keyName = "swapExchange", keyName = "swapExchange",
name = "Exchange", name = "Exchange",
description = "Swap Talk-to with Exchange on NPC<br>Example: Grand Exchange Clerk, Tool Leprechaun, Void Knight" description = "Swap Talk-to with Exchange on NPC<br>Example: Grand Exchange Clerk, Tool Leprechaun, Void Knight"
@@ -101,28 +123,6 @@ public interface MenuEntrySwapperConfig extends Config
return true; return true;
} }
@ConfigItem(
position = 6,
keyName = "swapHarpoon",
name = "Harpoon",
description = "Swap Cage, Big Net with Harpoon on Fishing spot"
)
default boolean swapHarpoon()
{
return true;
}
@ConfigItem(
position = 7,
keyName = "swapHome",
name = "Home",
description = "Swap Enter with Home on Portal"
)
default boolean swapHome()
{
return true;
}
@ConfigItem( @ConfigItem(
position = 8, position = 8,
keyName = "swapFairyRing", keyName = "swapFairyRing",
@@ -136,6 +136,28 @@ public interface MenuEntrySwapperConfig extends Config
@ConfigItem( @ConfigItem(
position = 9, position = 9,
keyName = "swapHarpoon",
name = "Harpoon",
description = "Swap Cage, Big Net with Harpoon on Fishing spot"
)
default boolean swapHarpoon()
{
return true;
}
@ConfigItem(
position = 10,
keyName = "swapHome",
name = "Home",
description = "Swap Enter with Home on Portal"
)
default boolean swapHome()
{
return true;
}
@ConfigItem(
position = 11,
keyName = "swapPickpocket", keyName = "swapPickpocket",
name = "Pickpocket on H.A.M.", name = "Pickpocket on H.A.M.",
description = "Swap Talk-to with Pickpocket on H.A.M members" description = "Swap Talk-to with Pickpocket on H.A.M members"
@@ -146,7 +168,7 @@ public interface MenuEntrySwapperConfig extends Config
} }
@ConfigItem( @ConfigItem(
position = 10, position = 12,
keyName = "swapPay", keyName = "swapPay",
name = "Pay", name = "Pay",
description = "Swap Talk-to with Pay on NPC<br>Example: Elstan, Heskel, Fayeth" description = "Swap Talk-to with Pay on NPC<br>Example: Elstan, Heskel, Fayeth"
@@ -157,7 +179,7 @@ public interface MenuEntrySwapperConfig extends Config
} }
@ConfigItem( @ConfigItem(
position = 11, position = 13,
keyName = "swapBoxTrap", keyName = "swapBoxTrap",
name = "Reset", name = "Reset",
description = "Swap Check with Reset on box trap" description = "Swap Check with Reset on box trap"
@@ -168,7 +190,7 @@ public interface MenuEntrySwapperConfig extends Config
} }
@ConfigItem( @ConfigItem(
position = 12, position = 14,
keyName = "swapTeleportItem", keyName = "swapTeleportItem",
name = "Teleport item", name = "Teleport item",
description = "Swap Wear, Wield with Rub, Teleport on teleport item<br>Example: Amulet of glory, Ardougne cloak, Chronicle" description = "Swap Wear, Wield with Rub, Teleport on teleport item<br>Example: Amulet of glory, Ardougne cloak, Chronicle"
@@ -179,7 +201,7 @@ public interface MenuEntrySwapperConfig extends Config
} }
@ConfigItem( @ConfigItem(
position = 13, position = 15,
keyName = "swapAbyssTeleport", keyName = "swapAbyssTeleport",
name = "Teleport to Abyss", name = "Teleport to Abyss",
description = "Swap Talk-to with Teleport for the Mage of Zamorak" description = "Swap Talk-to with Teleport for the Mage of Zamorak"
@@ -190,7 +212,7 @@ public interface MenuEntrySwapperConfig extends Config
} }
@ConfigItem( @ConfigItem(
position = 14, position = 16,
keyName = "swapTrade", keyName = "swapTrade",
name = "Trade", name = "Trade",
description = "Swap Talk-to with Trade on NPC<br>Example: Shop keeper, Shop assistant" description = "Swap Talk-to with Trade on NPC<br>Example: Shop keeper, Shop assistant"
@@ -201,7 +223,7 @@ public interface MenuEntrySwapperConfig extends Config
} }
@ConfigItem( @ConfigItem(
position = 15, position = 17,
keyName = "swapTravel", keyName = "swapTravel",
name = "Travel", name = "Travel",
description = "Swap Talk-to with Travel, Take-boat, Pay-fare, Charter on NPC<br>Example: Squire, Monk of Entrana, Customs officer, Trader Crewmember" description = "Swap Talk-to with Travel, Take-boat, Pay-fare, Charter on NPC<br>Example: Squire, Monk of Entrana, Customs officer, Trader Crewmember"
@@ -210,26 +232,4 @@ public interface MenuEntrySwapperConfig extends Config
{ {
return true; return true;
} }
@ConfigItem(
position = 16,
keyName = "claimSlime",
name = "Claim Slime",
description = "Swap Talk-to with Claim Slime from Morytania diaries"
)
default boolean claimSlime()
{
return true;
}
@ConfigItem(
position = 17,
keyName = "swapBirdhouseEmpty",
name = "Birdhouse",
description = "Swap Interact with Empty for birdhouses on Fossil Island"
)
default boolean swapBirdhouseEmpty()
{
return true;
}
} }