Skip to content

Commit

Permalink
Add XP to verbose output
Browse files Browse the repository at this point in the history
  • Loading branch information
Jack Brown committed Nov 11, 2023
1 parent 31638fd commit 3c4ffc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OSRSBytes/tests/hiscores_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ def test(verbose = True):
except:
failed_tests.append(skill)
if (verbose):
print("Skill: {}\n\tRank: {}\n\tLevel: {}"
.format(skill, boss_user.skill(skill,"rank"), boss_user.skill(skill,"level")))
print("Skill: {}\n\tRank: {}\n\tLevel: {}\n\tXP: {}"
.format(skill, boss_user.skill(skill,"rank"), boss_user.skill(skill,"level"),boss_user.skill(skill,"experience")))

for activity in pvp_user.getPVPGenerator():
try:
Expand Down

0 comments on commit 3c4ffc4

Please sign in to comment.