diff --git a/comm/const.go b/comm/const.go index ca3f718ec..2c2df8e4f 100644 --- a/comm/const.go +++ b/comm/const.go @@ -542,7 +542,7 @@ const ( Rtype54 TaskType = 54 //x名卡牌角色技能全满级 Rtype55 TaskType = 55 //xx品质英雄提升xx次技能等级 Rtype56 TaskType = 56 //拥有xx名技能升级xx次的xx职业英雄 - Rtype57 TaskType = 57 //xx名英雄技能满级 + Rtype57 TaskType = 57 //xx名英雄技能满级 // 修改时间 20230530 同54 Rtype58 TaskType = 58 //通关任意普通爬塔层数 Rtype59 TaskType = 59 //通关普通爬塔xx层 Rtype60 TaskType = 60 //任意主线副本通关1次 diff --git a/modules/hero/api_strengthenUpSkill.go b/modules/hero/api_strengthenUpSkill.go index a92dc8624..3937952e7 100644 --- a/modules/hero/api_strengthenUpSkill.go +++ b/modules/hero/api_strengthenUpSkill.go @@ -134,7 +134,7 @@ func (this *apiComp) StrengthenUpSkill(session comm.IUserSession, req *pb.HeroSt if maxLv { go this.module.ModuleBuried.TriggerBuried(session.GetUserId(), comm.GetBuriedParam2(comm.Rtype54, _hero.HeroID)) // szTask = append(szTask, comm.GetBuriedParam(comm.Rtype54, 1)) - szTask = append(szTask, comm.GetBuriedParam(comm.Rtype57, 1)) + //szTask = append(szTask, comm.GetBuriedParam(comm.Rtype57, 1)) szTask = append(szTask, comm.GetBuriedParam(comm.Rtype174, 1, _hero.Star)) } diff --git a/modules/mline/api_challengeover.go b/modules/mline/api_challengeover.go index a0c39aa8a..6fa341858 100644 --- a/modules/mline/api_challengeover.go +++ b/modules/mline/api_challengeover.go @@ -220,7 +220,7 @@ func (this *apiComp) ChallengeOver(session comm.IUserSession, req *pb.MlineChall } } // this.module.ModuleRtask.SendToRtask(session, comm.Rtype160, allStar) - tasks = append(tasks, comm.GetBuriedParam(comm.Rtype160, allStar)) + tasks = append(tasks, comm.GetBuriedParam(comm.Rtype160, allStar, stageConf.Chapterid)) go this.module.ModuleBuried.TriggerBuried(session.GetUserId(), tasks...) return } diff --git a/modules/smithy/api_atlasactivate.go b/modules/smithy/api_atlasactivate.go index d721a76c1..013ecad9f 100644 --- a/modules/smithy/api_atlasactivate.go +++ b/modules/smithy/api_atlasactivate.go @@ -60,7 +60,7 @@ func (this *apiComp) AtlasActivate(session comm.IUserSession, req *pb.SmithyAtla code = pb.ErrorCode_SmithyNoFoundAtlas return } - szTask = append(szTask, comm.GetBuriedParam(comm.Rtype166, 1)) + } else if conf.TypeId == 2 { if v, ok := atlas.Collect[req.Id]; ok { if !v.Activate { // 激活 @@ -76,8 +76,9 @@ func (this *apiComp) AtlasActivate(session comm.IUserSession, req *pb.SmithyAtla code = pb.ErrorCode_SmithyNoFoundAtlas return } - szTask = append(szTask, comm.GetBuriedParam(comm.Rtype165, 1)) } + szTask = append(szTask, comm.GetBuriedParam(comm.Rtype165, 1)) + szTask = append(szTask, comm.GetBuriedParam(comm.Rtype166, int32(len(atlas.Collect)))) szTask = append(szTask, comm.GetBuriedParam(comm.Rtype167, atlas.Score)) this.module.ModuleBuried.TriggerBuried(session.GetUserId(), szTask...) session.SendMsg(string(this.module.GetType()), "atlasactivate", &pb.SmithyAtlasActivateResp{Data: atlas})