This commit is contained in:
meixiongfeng 2023-05-26 18:59:01 +08:00
parent a85aac429a
commit 0c04eb6694
3 changed files with 6 additions and 3 deletions

View File

@ -653,7 +653,7 @@ const (
Rtype168 TaskType = 168 //完成功夫大师挑战塔第X层
Rtype169 TaskType = 169 //触发指定套装的套装效果
Rtype170 TaskType = 170 //获得指定材料X个
//Rtype170 TaskType = 170 //获得指定材料X个
Rtype171 TaskType = 171
Rtype172 TaskType = 172 //连续战斗X次接取任务后在任意战斗内使用连续战斗一次进度便加一
Rtype173 TaskType = 173 //解锁星象点X次接取任务后每解锁任意英的星象点一次进度便加一

View File

@ -159,7 +159,10 @@ func (this *Items) AddItems(session comm.IUserSession, items map[string]int32, b
this.itemsChangePush(session, change) //推送道具背包变化
}
for k, v := range items {
tasks = append(tasks, comm.GettaskParam(comm.Rtype187, v, utils.ToInt32(k)))
if v > 0 {
tasks = append(tasks, comm.GettaskParam(comm.Rtype187, v, utils.ToInt32(k)))
//tasks = append(tasks, comm.GettaskParam(comm.Rtype170, utils.ToInt32(k), v)) // 20230526 移除170 任务
}
}
if len(tasks) > 0 {
go this.ModuleRtask.TriggerTask(session.GetUserId(), tasks...)

View File

@ -188,7 +188,7 @@ func (this *ModuleRtask) getHandle(tt comm.TaskType) (handles []*rtaskCondHandle
comm.Rtype46, comm.Rtype76, comm.Rtype79,
comm.Rtype52, comm.Rtype55, comm.Rtype56, comm.Rtype82,
comm.Rtype65, comm.Rtype66, comm.Rtype67, comm.Rtype68, comm.Rtype70, comm.Rtype140,
comm.Rtype169, comm.Rtype170, comm.Rtype174, comm.Rtype179, comm.Rtype180:
comm.Rtype169, comm.Rtype174, comm.Rtype179, comm.Rtype180:
handle := &rtaskCondHandle{
condId: v.Id,
verify: this.modelRtaskRecord.verifyMultiEqual,