Skip to content

Commit

Permalink
Allow volcanic mine prospector helm to be used for Falador Hard diary (
Browse files Browse the repository at this point in the history
…#1979)

* Allow volcanic mine prospector helm to be used for Falador Hard diary

* Add golden prospector helmet
  • Loading branch information
coopermor authored Feb 18, 2025
1 parent 1a84c2b commit f20a4a2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2184,6 +2184,12 @@ public enum ItemCollections
ItemID.GHOMMALS_HILT_3,
ItemID.GHOMMALS_HILT_2,
ItemID.GHOMMALS_HILT_1
)),

PROSPECTOR_HELMET(ImmutableList.of(
ItemID.PROSPECTOR_HELMET,
ItemID.PROSPECTOR_HELMET_29472,
ItemID.GOLDEN_PROSPECTOR_HELMET
));

private final List<Integer> items;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ protected void setupRequirements()
spade = new ItemRequirement("Spade", ItemID.SPADE).showConditioned(notKilledMole).isNotConsumed();
wyvernProtection = new ItemRequirement("Wyvern Protection", ItemCollections.ANTI_WYVERN_SHIELDS)
.showConditioned(notKilledWyvern).isNotConsumed();
prospectorHelm = new ItemRequirement("Prospector Helm", ItemID.PROSPECTOR_HELMET, 1, true)
prospectorHelm = new ItemRequirement("Prospector Helm", ItemCollections.PROSPECTOR_HELMET, 1, true)
.showConditioned(notEnterMiningGuildWithProspector).isNotConsumed();
dragonfireProtection = new ItemRequirement("Protection from Dragonfire", ItemCollections.ANTIFIRE_SHIELDS)
.showConditioned(notKilledBlueDragon).isNotConsumed();
Expand Down

0 comments on commit f20a4a2

Please sign in to comment.