This commit is contained in:
shoopea 2019-09-23 09:33:45 +08:00
parent 7a6864a88a
commit 01ef73c11d

19
msg.go
View File

@ -61,17 +61,16 @@ func parseSubTypeMessageStockAnyAck(m *ChatWarsMessage, r *regexp.Regexp) (*Chat
re := regexp.MustCompile(`(📃){0,1}([a-zA-Z ]+) \(([0-9]+)\)( /view_[a-z0-9]+){0,1}\n{0,1}`)
for _, l := range re.FindAllStringSubmatch(r.ReplaceAllString(m.Text, "${Items}"), -1) {
// fmt.Printf("parseSubTypeMessageStockAnyAck : %+q\n", l)
i := getObjItemID(``, l[2])
q, _ := strconv.ParseInt(l[3], 10, 64)
if i != 0 {
item := ChatWarsItems{
ItemID64: i,
Quantity: q,
}
items = append(items, item)
// fmt.Printf("parseSubTypeMessageStockAnyAck : %+q\n", l)
i := getObjItemID(``, l[2])
q, _ := strconv.ParseInt(l[3], 10, 64)
if i != 0 {
item := ChatWarsItems{
ItemID64: i,
Quantity: q,
}
*/
items = append(items, item)
}
}
cwm.Stock = items