Skip to content

Commit

Permalink
Bug 89 highlighting (#90)
Browse files Browse the repository at this point in the history
* Fixed item overlay missing.

* Fixed Typo In STASH Unit Name

* Set plugin version number to v4.1.1
  • Loading branch information
larsvansoest committed Feb 20, 2023
1 parent 2e95745 commit 9a2161f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies {
}

group = 'com.larsvansoest.runelite'
version = '4.1.0'
version = '4.1.1'
sourceCompatibility = '1.8'

tasks.withType(JavaCompile) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 9a2161f

Please sign in to comment.