From 16dc1e46e6615556643e2e5e33bf4ed52544b05c Mon Sep 17 00:00:00 2001 From: shoopea Date: Mon, 10 Feb 2020 18:19:32 +0800 Subject: [PATCH] fix debug --- job.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/job.go b/job.go index b24c4a2..e9de95e 100644 --- a/job.go +++ b/job.go @@ -2095,7 +2095,7 @@ func jobCraftAll(j Job) { recipes, _ := totalRecipes[k] parts, _ := totalParts[k] if k == "a83" || k == "a84" { - log.Printf("jobCraftAll[%s] ratio : %d | parts : %d | recipes : %d", i, parts, recipes) + log.Printf("jobCraftAll[%s] ratio : %d | parts : %d | recipes : %d", k, i, parts, recipes) } if (recipes > 0 && parts > (i-1)) || (parts >= i) { completeItems[k] = float64(MinInt64(recipes*i, parts) / i)