Skip to content

Commit

Permalink
Prefer Slayer Helmets over earmuffs/facemask etc where applicable
Browse files Browse the repository at this point in the history
  • Loading branch information
pajlada authored and Zoinkwiz committed Oct 1, 2023
1 parent b30d1ac commit e5abe21
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/com/questhelper/ItemCollections.java
Original file line number Diff line number Diff line change
Expand Up @@ -1334,8 +1334,8 @@ public enum ItemCollections
)),

WALL_BEAST(new ImmutableList.Builder<Integer>()
.add(ItemID.SPINY_HELMET)
.addAll(SharedCollections.slayer_helmets)
.add(ItemID.SPINY_HELMET)
.build()),

WATER_ALTAR(ImmutableList.of(
Expand Down Expand Up @@ -1590,13 +1590,13 @@ public enum ItemCollections
)),

EAR_PROTECTION(new ImmutableList.Builder<Integer>()
.add(ItemID.EARMUFFS)
.addAll(SharedCollections.slayer_helmets)
.add(ItemID.EARMUFFS)
.build()),

NOSE_PROTECTION(new ImmutableList.Builder<Integer>()
.add(ItemID.NOSE_PEG)
.addAll(SharedCollections.slayer_helmets)
.add(ItemID.NOSE_PEG)
.build()),

ELITE_PYRE_LOGS(ImmutableList.of(
Expand Down Expand Up @@ -2001,8 +2001,8 @@ public enum ItemCollections
)),

MOUTH_PROTECTION(new ImmutableList.Builder<Integer>()
.add(ItemID.FACEMASK)
.addAll(SharedCollections.slayer_helmets)
.add(ItemID.FACEMASK)
.build()),

VOID_HELM(ImmutableList.of(
Expand Down

0 comments on commit e5abe21

Please sign in to comment.