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();
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;
}