reformat salmon run output
This commit is contained in:
7
main.go
7
main.go
@@ -222,10 +222,13 @@ func salmonRunSchedule() string {
|
||||
output += fmt.Sprintf("%d/%d %2d:%02d- ", v.StartTime.Month(), v.StartTime.Day(), v.StartTime.Hour(), v.StartTime.Minute())
|
||||
output += v.Stage.Name + " "
|
||||
output += v.Boss.Name + "\n "
|
||||
for _, weapon := range v.Weapons {
|
||||
for c, weapon := range v.Weapons {
|
||||
output += weapon.Name + " "
|
||||
if c == 1 {
|
||||
output += "\n "
|
||||
}
|
||||
}
|
||||
output += "\n\n"
|
||||
output += "\n"
|
||||
}
|
||||
output += "```\n"
|
||||
return output
|
||||
|
||||
Reference in New Issue
Block a user