This commit is contained in:
shoopea 2020-01-27 13:26:33 +08:00
parent 0eda36a788
commit da5beef9a5

7
job.go
View File

@ -1861,10 +1861,9 @@ func jobCraftItem(j Job) {
}
/* we can finish the job */
var out string
out = fmt.Sprintf("Summary for <b>%s</b>\n", item.Names[0])
out = fmt.Sprint("%s<code> Mana : %d</code>\n", out, totalMana)
out = fmt.Sprint("%s<pre> Items :</pre>\n", out)
out := fmt.Sprintf("Summary for <b>%s</b>\n", item.Names[0])
out = fmt.Sprintf("%s<code> Mana : %d</code>\n", out, totalMana)
out = fmt.Sprintf("%s<pre> Items :</pre>\n", out)
for k, v := range requiredItems {
obj, _ := getObjItem(getObjItemID(k, ``))
ava, _ := availableItems[k]