It should return previous level instead of current one.
This commit is contained in:
BONNe 2020-05-07 19:27:59 +03:00
parent 67971e44e8
commit ce6aa4ef55
1 changed files with 1 additions and 1 deletions

View File

@ -1531,7 +1531,7 @@ public class ChallengesManager
lastStatus = statusIterator.next();
}
return lastStatus != null ? lastStatus.getLevel() : null;
return lastStatus != null ? lastStatus.getPreviousLevel() : null;
}