mirror of
https://github.com/Luzifer/runemetrics.git
synced 2024-12-22 04:01:21 +00:00
Fix: Only retain target level if not reached
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
a4df14377f
commit
20504d2960
1 changed files with 5 additions and 1 deletions
|
@ -122,7 +122,11 @@ func getPlayerInfo(name string, activities int) (*playerInfo, error) {
|
|||
if playerInfoCache != nil {
|
||||
for i, nSk := range out.SkillValues {
|
||||
oSk := playerInfoCache.GetSkill(nSk.ID)
|
||||
out.SkillValues[i].TargetLevel = oSk.TargetLevel
|
||||
|
||||
if oSk.TargetLevel > nSk.Level {
|
||||
out.SkillValues[i].TargetLevel = oSk.TargetLevel
|
||||
}
|
||||
|
||||
if oSk.XP == nSk.XP {
|
||||
out.SkillValues[i].Updated = oSk.Updated
|
||||
continue
|
||||
|
|
Loading…
Reference in a new issue