Skip to content

Commit

Permalink
Add Underground Pass guide, and bump runelite version to 1.6.26.1
Browse files Browse the repository at this point in the history
  • Loading branch information
LlemonDuck authored and Zoinkwiz committed Sep 7, 2020
1 parent 807250d commit 93b0871
Show file tree
Hide file tree
Showing 3 changed files with 558 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repositories {
mavenCentral()
}

def runeLiteVersion = '1.6.25'
def runeLiteVersion = '1.6.26.1'

dependencies {
compileOnly group: 'net.runelite', name:'client', version: runeLiteVersion
Expand Down
26 changes: 26 additions & 0 deletions src/main/java/com/questhelper/ItemCollections.java
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,30 @@ public class ItemCollections
ItemID.LAZY_HELL_CAT,
ItemID.WILY_HELLCAT)
);

@Getter
private static List<Integer> bows = new ArrayList<>(Arrays.asList(
ItemID.SHORTBOW,
ItemID.LONGBOW,
ItemID.MAGIC_SHORTBOW,
ItemID.MAGIC_LONGBOW,
ItemID.MAPLE_SHORTBOW,
ItemID.MAPLE_LONGBOW,
ItemID.OAK_SHORTBOW,
ItemID.OAK_LONGBOW,
ItemID.WILLOW_SHORTBOW,
ItemID.WILLOW_LONGBOW,
ItemID.YEW_SHORTBOW,
ItemID.YEW_LONGBOW
));

@Getter
private static List<Integer> metalArrows = new ArrayList<>(Arrays.asList(
ItemID.BRONZE_ARROW,
ItemID.IRON_ARROW,
ItemID.STEEL_ARROW,
ItemID.MITHRIL_ARROW,
ItemID.ADAMANT_ARROW,
ItemID.RUNE_ARROW
));
}
Loading

0 comments on commit 93b0871

Please sign in to comment.