diff --git a/job.go b/job.go index b754de8..b4c49fc 100644 --- a/job.go +++ b/job.go @@ -818,13 +818,7 @@ func jobGStock(j Job) { } } } - txt := fmt.Sprintf(`Current stock [%d/38000] :\n`+ - ` - Resources : %d (%d)\n`+ - ` - Alchemist : %d (%d)\n`+ - ` - Misc stuff : %d (%d)\n`+ - ` - Recipes : %d (%d)\n`+ - ` - Parts : %d (%d)\n`+ - ` - Other : %d (%d)\n`, totalSize, resSize, resCount, alchSize, alchCount, miscSize, miscCount, recSize, recCount, partSize, partCount, otherSize, otherCount) + txt := fmt.Sprintf("Current stock [%d/38000] :\n - Resources : %d (%d)\n - Alchemist : %d (%d)\n - Misc stuff : %d (%d)\n - Recipes : %d (%d)\n - Parts : %d (%d)\n - Other : %d (%d)\n", totalSize, resSize, resCount, alchSize, alchCount, miscSize, miscCount, recSize, recCount, partSize, partCount, otherSize, otherCount) m := TGCommand{ Type: commandReplyMsg,