Revert "Show accurate XP gain in notification on level up (#10590)"

This reverts commit 1f7dd421d4.
This commit is contained in:
Sabe Jones
2018-08-31 16:02:14 -05:00
parent 32a22f1545
commit c8d874d28a
2 changed files with 2 additions and 8 deletions

View File

@@ -47,6 +47,6 @@ export function round (number, nDigits) {
}
export function getXPMessage (val) {
if (val < -50) return; // don't show when they multi-level up (resetting their exp)
if (val < -50) return; // don't show when they level up (resetting their exp)
return `${getSign(val)} ${round(val)}`;
}