This commit is contained in:
shoopea 2020-01-27 13:25:35 +08:00
parent c91947a50a
commit 0eda36a788

4
job.go
View File

@ -1861,8 +1861,8 @@ func jobCraftItem(j Job) {
} }
/* we can finish the job */ /* we can finish the job */
var out string
out := fmt.Sprintf("Summary for <b>%s</b>\n", item.Names[0]) 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<code> Mana : %d</code>\n", out, totalMana)
out = fmt.Sprint("%s<pre> Items :</pre>\n", out) out = fmt.Sprint("%s<pre> Items :</pre>\n", out)
for k, v := range requiredItems { for k, v := range requiredItems {