Merge branch 'lixing' into dev

This commit is contained in:
2025-05-07 16:16:40 +08:00

View File

@@ -105,8 +105,8 @@ func (l *TransferCastileToGameLogic) TransferCastileToGame(req *types.TransferCa
itemList := []map[string]any{
{
"itemId": 32110,
"itemCount": 20,
"itemId": 2013,
"itemCount": uint(req.Amount),
},
}
data, _ := jsonx.MarshalToString(itemList)
@@ -115,7 +115,7 @@ func (l *TransferCastileToGameLogic) TransferCastileToGame(req *types.TransferCa
_, err = l.svcCtx.GameAction(l.ctx, req.RoleID, consts.GameActionSendNoticeAward, map[string]any{
"role_ids": req.RoleID,
"item_list": data,
"template_id": 120338,
"template_id": 120371,
"mail_ttl": 24 * 90,
})