Skip to content

Commit

Permalink
Merge pull request runelite#8837 from devLotto/fix-onscreen-xptracker…
Browse files Browse the repository at this point in the history
…-leftstr

xp tracker: fix on-screen information type label
  • Loading branch information
alexanderhenne authored May 15, 2019
2 parents 3e59f38 + 0959586 commit 6dd1921
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,12 +110,12 @@ public Dimension render(Graphics2D graphics)
rightNum = snapshot.getActionsRemainingToGoal();
break;
case XP_LEFT:
leftStr = config.onScreenDisplayMode().toString();
leftStr = "XP Left";
rightNum = snapshot.getXpRemainingToGoal();
break;
case XP_GAINED:
default:
leftStr = config.onScreenDisplayMode().toString();
leftStr = "XP Gained";
rightNum = snapshot.getXpGainedInSession();
break;
}
Expand Down

0 comments on commit 6dd1921

Please sign in to comment.