update config

This commit is contained in:
wh_zcy 2023-06-14 10:08:34 +08:00
parent 3abfdec8aa
commit 5cdac676ad
3 changed files with 421 additions and 386 deletions

View File

@ -17171,7 +17171,7 @@
], ],
"filter2": [ "filter2": [
"英雄ID", "英雄ID",
"0", "装备数量",
"0", "0",
"0" "0"
] ]
@ -17519,7 +17519,7 @@
}, },
"type": 41, "type": 41,
"valid": 0, "valid": 0,
"NPC": 10264, "NPC": 0,
"value": 1, "value": 1,
"filter": [ "filter": [
3 3
@ -17543,7 +17543,7 @@
}, },
"type": 43, "type": 43,
"valid": 0, "valid": 0,
"NPC": 10274, "NPC": 0,
"value": 3, "value": 3,
"filter": [ "filter": [
6 6

File diff suppressed because it is too large Load Diff

View File

@ -28,7 +28,6 @@ func (this *apiComp) TaskList(session comm.IUserSession, req *pb.SociatyTaskList
var taskList []*pb.SociatyTask var taskList []*pb.SociatyTask
for _, v := range sociatyTask.TaskList { for _, v := range sociatyTask.TaskList {
status := v.Status
// if _, ok := this.module.modelSociaty.validTask(uid, v.TaskId); ok { // if _, ok := this.module.modelSociaty.validTask(uid, v.TaskId); ok {
// status = 1 //完成 // status = 1 //完成
// } // }
@ -48,7 +47,7 @@ func (this *apiComp) TaskList(session comm.IUserSession, req *pb.SociatyTaskList
taskList = append(taskList, &pb.SociatyTask{ taskList = append(taskList, &pb.SociatyTask{
TaskId: v.TaskId, TaskId: v.TaskId,
Status: status, Status: v.Status,
Received: v.Received, Received: v.Received,
Cond: v.Cond, Cond: v.Cond,
}) })