fix: Fix stuck when clicking relic

This commit is contained in:
amizing25 2024-12-04 15:27:41 +07:00
parent ec0ae7ab2e
commit 68caed75eb

View File

@ -64,3 +64,11 @@ pub async fn on_take_off_equipment_cs_req(
_res: &mut TakeOffEquipmentScRsp,
) {
}
pub async fn on_relic_recommend_cs_req(
_: &mut PlayerSession,
req: &RelicRecommendCsReq,
res: &mut RelicRecommendScRsp,
) {
res.avatar_id = req.avatar_id
}