Merge pull request #8837 from devLotto/fix-onscreen-xptracker-leftstr

xp tracker: fix on-screen information type label
This commit is contained in:
Lotto
2019-05-15 20:53:08 +02:00
committed by GitHub

View File

@@ -110,12 +110,12 @@ class XpInfoBoxOverlay extends Overlay
rightNum = snapshot.getActionsRemainingToGoal(); rightNum = snapshot.getActionsRemainingToGoal();
break; break;
case XP_LEFT: case XP_LEFT:
leftStr = config.onScreenDisplayMode().toString(); leftStr = "XP Left";
rightNum = snapshot.getXpRemainingToGoal(); rightNum = snapshot.getXpRemainingToGoal();
break; break;
case XP_GAINED: case XP_GAINED:
default: default:
leftStr = config.onScreenDisplayMode().toString(); leftStr = "XP Gained";
rightNum = snapshot.getXpGainedInSession(); rightNum = snapshot.getXpGainedInSession();
break; break;
} }