Skip to content

Commit

Permalink
Release Version v2.1.0 (#26)
Browse files Browse the repository at this point in the history
* add archaeology skill (#25)

* fix Jagex class default

* v2.1.0 (#27)
  • Loading branch information
Austin Paquette authored Apr 6, 2020
1 parent 0465daf commit a456e00
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "runescape-api",
"version": "2.0.0",
"version": "2.1.0",
"description": "Simple wrapper for RuneScape APIs written in node.",
"author": "Joshua Filby <joshua@filby.me>",
"maintainers": [
Expand Down
1 change: 1 addition & 0 deletions src/configs/runescape.ts
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,7 @@ export const hiscores = {
"dungeoneering",
"divination",
"invention",
"archaeology",
] as const,
}
export const miscellaneous = {
Expand Down
1 change: 1 addition & 0 deletions src/utils/Jagex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ const defaultSkillTree: Jagex.Hiscores.PlayerSkills = {
dungeoneering: { rank: 0, level: 1, experience: 0 },
divination: { rank: 0, level: 1, experience: 0 },
invention: { rank: 0, level: 1, experience: 0 },
archaeology: { rank: 0, level: 1, experience: 0 },
}
const separateIntoLines = (jagexPlayer: string): string[] => {
return jagexPlayer.split("\n")
Expand Down

0 comments on commit a456e00

Please sign in to comment.