新手任务

This commit is contained in:
hahwu 2025-08-25 16:10:39 +08:00
parent 810067c37a
commit 50036af6a1
2 changed files with 3 additions and 0 deletions

View File

@ -779,6 +779,7 @@ func (p *Player) LoginBackData() {
p.PushClientRes(p.PlayMod.mod_list.Item.BackData())
p.PushClientRes(p.GetPlayerBaseMod().BackAsset())
p.PushClientRes(p.PlayMod.mod_list.Kv.BackData())
p.PushClientRes(p.PlayMod.mod_list.GuideTask.BackData())
p.PushClientRes(p.PlayMod.mod_list.Friend.BubbleBackData())
p.BackDataActivity()
BackChampship(p)

View File

@ -1286,6 +1286,7 @@ func ReqGetGuideTaskReward(player *Player, buf []byte) error {
player.PushClientRes(GuideTaskMod.BackData())
player.PushClientRes(&msg.ResGetGuideTaskReward{
Code: msg.RES_CODE_SUCCESS,
Id: req.Id,
})
return nil
}
@ -1319,6 +1320,7 @@ func ReqGetGuideActiveReward(player *Player, buf []byte) error {
player.PushClientRes(GuideTaskMod.BackData())
player.PushClientRes(&msg.ResGetGuideActiveReward{
Code: msg.RES_CODE_SUCCESS,
Id: req.Id,
})
return nil
}