diff --git a/job.go b/job.go index 19a38af..fa5185f 100644 --- a/job.go +++ b/job.go @@ -1842,7 +1842,12 @@ func jobCraftItem(j Job) { } } else { if obj.Craftable { - log.Printf("Item missing recipe : %s\n", code) + w := TGCommand{ + Type: commandSendMsg, + Text: fmt.Sprintf("Item missing recipe : %s\n", code), + ToUserID64: cfg.Bot.Admin, + } + TGCmdQueue <- w } missingItems[code] = req - ava }