This commit is contained in:
aozhiwei 2024-11-22 13:04:13 +08:00
parent eaf03ec09c
commit cef24e7a58

View File

@ -69,6 +69,9 @@ func (this *BagApi) UseItem(c *gin.Context) {
if itemMeta == nil {
f5.RspErr(c, 500, "server internal error")
return
}
if itemMeta.GetItemType() != constant.ITEM_TYPE_SCORE_DOUBLE_CARD {
}
c.JSON(200, rspObj)
}