diff --git a/items.go b/items.go index 6a7ade4..cdef55b 100644 --- a/items.go +++ b/items.go @@ -4,7 +4,7 @@ import ( "log" ) -func reloadObjItem(code string, name string, itemTypeID64 int64, weight int, exchange bool, auction bool) { +func reloadObjItem(code string, name string, itemTypeID64 int64, weight int64, exchange bool, auction bool) { var objID64 int64 objID64 = getSilentObjItemID(code, ``) if objID64 == 0 { diff --git a/job.go b/job.go index d215dd7..3e91ca7 100644 --- a/job.go +++ b/job.go @@ -816,7 +816,7 @@ func jobGStock(j Job) { ` - Misc stuff : %d (%d)\n`+ ` - Recipes : %d (%d)\n`+ ` - Parts : %d (%d)\n`+ - ` - Other : %d (%d)\n`, totalSize, resSize, resCount, alchSize, alchCount, miscSize, miscCount, recSize, recCount, partsSize, partsCount, otherSize, otherCount) + ` - Other : %d (%d)\n`, totalSize, resSize, resCount, alchSize, alchCount, miscSize, miscCount, recSize, recCount, partSize, partCount, otherSize, otherCount) m := TGCommand{ Type: commandReplyMsg,