This commit is contained in:
shoopea 2021-01-21 16:36:07 +01:00
parent 4e179df994
commit 087542a64e
2 changed files with 2 additions and 3 deletions

3
bot.go
View File

@ -863,8 +863,7 @@ func botBrewItem(m *ChatWarsMessage, r *regexp.Regexp) {
Status: 0,
}
p.ObjItemID64, err = getCraftItemID(r.ReplaceAllString(m.Text, "${Code}"))
logOnError(err, "botBrewItem : getCraftItemID")
p.ObjItemID64 = getObjItemID(r.ReplaceAllString(m.Text, "${Code}"))
fmt.Printf("Code[%s] : %d\n", r.ReplaceAllString(m.Text, "${Code}"), p.ObjItemID64)

View File

@ -86,7 +86,7 @@ func getObjItem(objID64 int64) (*ChatWarsItem, error) {
muxObjItem.RLock()
defer muxObjItem.RUnlock()
if id, ok := cacheObjItemId[objID64]; ok {
log.Printf("Matching item name %s with %s.\n", name, obj.Name)
//log.Printf("Matching item name %s with %s.\n", name, obj.Name)
return &objItems[id], nil
} else {
return nil, errors.New("Item not found.")