diff --git a/bin/json/game_loading.json b/bin/json/game_loading.json index 9e5f019fc..e843b9114 100644 --- a/bin/json/game_loading.json +++ b/bin/json/game_loading.json @@ -65,7 +65,7 @@ { "id": 1008, "scene": "businessScene", - "image": "ld_5v5_bg", + "image": "ld_mh_bg_sd", "prompt": { "key": "loading_Sheet1_prompt_8", "text": "商人们经常乘着巨怪列车外出,回来时总会带些新奇的小玩意。" diff --git a/bin/json/game_skillafteratk.json b/bin/json/game_skillafteratk.json index 05dbfe8cb..411528532 100644 --- a/bin/json/game_skillafteratk.json +++ b/bin/json/game_skillafteratk.json @@ -28762,7 +28762,7 @@ "Argu": [ 1, 4, - 3000 + 600 ], "FollowSK": [ 255005312 diff --git a/modules/task/api_receive.go b/modules/task/api_receive.go index 28acf1464..94f12cebc 100644 --- a/modules/task/api_receive.go +++ b/modules/task/api_receive.go @@ -1,6 +1,7 @@ package task import ( + "fmt" "go_dreamfactory/comm" "go_dreamfactory/lego/sys/log" "go_dreamfactory/pb" @@ -15,10 +16,13 @@ func (this *apiComp) ReceiveCheck(session comm.IUserSession, req *pb.TaskReceive code = pb.ErrorCode_TaskIdEmpty } else if req.TaskTag == 0 { code = pb.ErrorCode_TaskTagEmpty + } else { + code = pb.ErrorCode_ReqParameterError } errdata = &pb.ErrorData{ - Code: code, - Title: code.ToString(), + Code: code, + Title: code.ToString(), + Message: fmt.Sprintf("Id:%v tag:%v", req.Id, req.TaskTag), } return }