diff --git a/README.md b/README.md index 2ade00f..163fcac 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -## Emote Clue Items v4.1.0 [![Plugin Installs](http://img.shields.io/endpoint?url=https://i.pluginhub.info/shields/installs/plugin/emote-clue-items&label=Active%20installs)](https://runelite.net/plugin-hub/Lars%20van%20Soest) +## Emote Clue Items v4.1.1 [![Plugin Installs](http://img.shields.io/endpoint?url=https://i.pluginhub.info/shields/installs/plugin/emote-clue-items&label=Active%20installs)](https://runelite.net/plugin-hub/Lars%20van%20Soest) Emote Clue Items is a RuneLite plugin which highlights items required for emote clue steps and provides a user-friendly item collection log with STASHUnit integration. diff --git a/build.gradle b/build.gradle index b4fdc48..3bee38a 100644 --- a/build.gradle +++ b/build.gradle @@ -24,7 +24,7 @@ dependencies { } group = 'com.larsvansoest.runelite' -version = '4.1.0' +version = '4.1.1' sourceCompatibility = '1.8' tasks.withType(JavaCompile) { diff --git a/src/main/java/com/larsvansoest/runelite/clueitems/EmoteClueItemsPlugin.java b/src/main/java/com/larsvansoest/runelite/clueitems/EmoteClueItemsPlugin.java index 953c156..a051e27 100644 --- a/src/main/java/com/larsvansoest/runelite/clueitems/EmoteClueItemsPlugin.java +++ b/src/main/java/com/larsvansoest/runelite/clueitems/EmoteClueItemsPlugin.java @@ -112,7 +112,7 @@ protected void startUp() this::addStashUnitMarkerToMap, this::removeStashUnitMarkerFromMap, "Emote Clue Items", - "v4.1.0", + "v4.1.1", "https://github.com/larsvansoest/emote-clue-items", "https://www.paypal.com/donate/?hosted_button_id=72AFNGL28LFEN" ); diff --git a/src/main/java/com/larsvansoest/runelite/clueitems/data/StashUnit.java b/src/main/java/com/larsvansoest/runelite/clueitems/data/StashUnit.java index 56e5ef6..b016120 100644 --- a/src/main/java/com/larsvansoest/runelite/clueitems/data/StashUnit.java +++ b/src/main/java/com/larsvansoest/runelite/clueitems/data/StashUnit.java @@ -32,7 +32,7 @@ public enum StashUnit WHEAT_FIELD_NEAR_THE_LUMBRIDGE_WINDMILL("Lumbridge Windmill Wheat Field", STASHUnit.WHEAT_FIELD_NEAR_THE_LUMBRIDGE_WINDMILL, Type.Hole), CROSSROADS_NORTH_OF_DRAYNOR_VILLAGE("Draynor Village Crossroads", STASHUnit.CROSSROADS_NORTH_OF_DRAYNOR_VILLAGE, Type.Bush), RIMMINGTON_MINE("Rimmington Mine", STASHUnit.RIMMINGTON_MINE, Type.Rock), - VARROCK_PALACE_LIBRARY("Varrock Palacy Library", STASHUnit.VARROCK_PALACE_LIBRARY, Type.Crate), + VARROCK_PALACE_LIBRARY("Varrock Palace Library", STASHUnit.VARROCK_PALACE_LIBRARY, Type.Crate), UPSTAIRS_IN_THE_ARDOUGNE_WINDMILL("Ardougne Windmill", STASHUnit.UPSTAIRS_IN_THE_ARDOUGNE_WINDMILL, Type.Crate), OUTSIDE_THE_FALADOR_PARTY_ROOM("Falador Party Room", STASHUnit.OUTSIDE_THE_FALADOR_PARTY_ROOM, Type.Bush), TAVERLEY_STONE_CIRCLE("Taverly Stone Circle", STASHUnit.TAVERLEY_STONE_CIRCLE, Type.Rock), diff --git a/src/main/java/com/larsvansoest/runelite/clueitems/overlay/EmoteClueItemsOverlay.java b/src/main/java/com/larsvansoest/runelite/clueitems/overlay/EmoteClueItemsOverlay.java index 65e5982..abad918 100644 --- a/src/main/java/com/larsvansoest/runelite/clueitems/overlay/EmoteClueItemsOverlay.java +++ b/src/main/java/com/larsvansoest/runelite/clueitems/overlay/EmoteClueItemsOverlay.java @@ -146,7 +146,7 @@ public Dimension render(final Graphics2D graphics) { this.worldMapMarkers.forEach(worldMapMarker -> worldMapMarker.rotateOrb(this.client)); }); - return null; + return super.render(graphics); } private boolean difficultySettingEnabled(final EmoteClueDifficulty difficulty) {