diff --git a/build.gradle b/build.gradle index 3ccf2b7c9d..7e420555b7 100644 --- a/build.gradle +++ b/build.gradle @@ -79,8 +79,8 @@ subprojects { uploadArchives { repositories { mavenDeployer { - repository(url: System.getenv("NEXUS-URL")) { - authentication(userName: System.getenv("NEXUS-USER"), password: System.getenv("NEXUS-PASSWORD")) + repository(url: System.getenv("NEXUS_URL")) { + authentication(userName: System.getenv("NEXUS_USER"), password: System.getenv("NEXUS_PASSWORD")) } } } diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/menuentryswapper/MenuEntrySwapperPlugin.java b/runelite-client/src/main/java/net/runelite/client/plugins/menuentryswapper/MenuEntrySwapperPlugin.java index 3c2a6ab602..6f725c02ab 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/menuentryswapper/MenuEntrySwapperPlugin.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/menuentryswapper/MenuEntrySwapperPlugin.java @@ -1265,6 +1265,14 @@ public class MenuEntrySwapperPlugin extends Plugin if (this.swapBirdhouseEmpty) { menuManager.addPriorityEntry("Empty", "Birdhouse"); + menuManager.addPriorityEntry("Empty", "Oak Birdhouse"); + menuManager.addPriorityEntry("Empty", "Willow Birdhouse"); + menuManager.addPriorityEntry("Empty", "Teak Birdhouse"); + menuManager.addPriorityEntry("Empty", "Maple Birdhouse"); + menuManager.addPriorityEntry("Empty", "Mahogany Birdhouse"); + menuManager.addPriorityEntry("Empty", "Yew Birdhouse"); + menuManager.addPriorityEntry("Empty", "Magic Birdhouse"); + menuManager.addPriorityEntry("Empty", "Redwood Birdhouse"); } if (this.swapQuick) @@ -1565,6 +1573,14 @@ public class MenuEntrySwapperPlugin extends Plugin menuManager.removePriorityEntry("Activate", "Box trap"); menuManager.removePriorityEntry("Chase"); menuManager.removePriorityEntry("Empty", "Birdhouse"); + menuManager.removePriorityEntry("Empty", "Oak Birdhouse"); + menuManager.removePriorityEntry("Empty", "Willow Birdhouse"); + menuManager.removePriorityEntry("Empty", "Teak Birdhouse"); + menuManager.removePriorityEntry("Empty", "Maple Birdhouse"); + menuManager.removePriorityEntry("Empty", "Mahogany Birdhouse"); + menuManager.removePriorityEntry("Empty", "Yew Birdhouse"); + menuManager.removePriorityEntry("Empty", "Magic Birdhouse"); + menuManager.removePriorityEntry("Empty", "Redwood Birdhouse"); menuManager.removePriorityEntry("Quick-enter"); menuManager.removePriorityEntry("Quick-start"); menuManager.removePriorityEntry("Quick-pass");