Skills: Add a distinct marker if the skill is currently learning
This commit is contained in:
parent
a74aa529b0
commit
bb7be9b62a
1 changed files with 12 additions and 0 deletions
12
main.go
12
main.go
|
@ -223,6 +223,18 @@ func printCharacterSkillQueue(swaggerclient *ESI.App, m *Character) {
|
|||
continue
|
||||
}
|
||||
|
||||
if startDate.Before(time.Now()) {
|
||||
fmt.Printf("%s %"+maxSkillFormat+"s %d, %s - ends on %s (%s)\n",
|
||||
aurora.Green("➠").Bold(),
|
||||
name,
|
||||
*skill.FinishedLevel,
|
||||
formatDuration(skillDuration, 2),
|
||||
time.Time(skill.FinishDate).Format(defaultDateFormat),
|
||||
formatDuration(finishDuration, 3),
|
||||
)
|
||||
continue
|
||||
}
|
||||
|
||||
fmt.Printf(" %"+maxSkillFormat+"s %d, %s - ends on %s (%s)\n",
|
||||
name,
|
||||
*skill.FinishedLevel,
|
||||
|
|
Reference in a new issue