修改 castile 的道具ID和模板ID

This commit is contained in:
yuming88
2025-05-07 15:55:31 +08:00
parent 27919fd025
commit 52cf72394b

View File

@@ -104,8 +104,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)
@@ -114,7 +114,7 @@ func (l *TransferCastileToGameLogic) TransferCastileToGame(req *types.TransferCa
_, err = l.svcCtx.GameAction(l.ctx, int64(req.RoleID), consts.GameActionSendNoticeAward, map[string]any{
"role_ids": req.RoleID,
"item_list": data,
"template_id": 120338,
"template_id": 120371,
"mail_ttl": 24 * 90,
})