Skip to content

Commit

Permalink
fix: expand set of never kept items on death (#364)
Browse files Browse the repository at this point in the history
  • Loading branch information
iProdigy authored Nov 29, 2023
1 parent b23e05f commit 1010cd3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## Unreleased

- Bugfix: Update set of items that are never kept on dangerous deaths. (#364)
- Bugfix: Don't report inaccurate completed collections count, when character summary tab was not selected. (#374)
- Bugfix: Avoid undercounting diary completions for notifications that occur shortly after a teleport. (#373)

Expand Down
7 changes: 4 additions & 3 deletions src/main/java/dinkplugin/util/ItemUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,11 @@ public class ItemUtils {
final String ITEM_CACHE_BASE_URL = "https://static.runelite.net/cache/item/";

private final Set<Integer> NEVER_KEPT_ITEMS = ImmutableSet.of(
CLUE_BOX, LOOTING_BAG,
AMULET_OF_THE_DAMNED, AMULET_OF_THE_DAMNED_FULL,
CLUE_BOX, LOOTING_BAG, FLAMTAER_BAG, JAR_GENERATOR,
AMULET_OF_THE_DAMNED, RING_OF_CHAROS, RING_OF_CHAROSA,
BRACELET_OF_ETHEREUM, BRACELET_OF_ETHEREUM_UNCHARGED,
AVAS_ACCUMULATOR, AVAS_ATTRACTOR, MAGIC_SECATEURS,
AVAS_ACCUMULATOR, AVAS_ATTRACTOR, MAGIC_SECATEURS, MAGIC_BUTTERFLY_NET,
COOKING_GAUNTLETS, GOLDSMITH_GAUNTLETS, CHAOS_GAUNTLETS, STEEL_GAUNTLETS,
SILLY_JESTER_HAT, SILLY_JESTER_TOP, SILLY_JESTER_TIGHTS, SILLY_JESTER_BOOTS,
LUNAR_HELM, LUNAR_TORSO, LUNAR_LEGS, LUNAR_GLOVES, LUNAR_BOOTS,
LUNAR_CAPE, LUNAR_AMULET, LUNAR_RING, LUNAR_STAFF,
Expand Down

0 comments on commit 1010cd3

Please sign in to comment.