Commit 7e41792b4d4f9dd34a867311aa31777451180de4
1 parent
d7abe2b2
Exists in
master
提交
Showing
2 changed files
with
4 additions
and
3 deletions
Show diff stats
src/HttpServer/logic/constdef.go
src/HttpServer/logic/function.go
... | ... | @@ -406,9 +406,9 @@ func InitUserInfo(data *UserLoginReq, resp *UserLoginResp, uuid int) { |
406 | 406 | d1.Position = i |
407 | 407 | |
408 | 408 | d1.Cat = 0 |
409 | - d1.Cat = 18 | |
410 | - if i == 0 { | |
411 | - d1.Cat = 42 | |
409 | + //d1.Cat = 18 | |
410 | + if i < 4 { | |
411 | + d1.Cat = 1 | |
412 | 412 | } |
413 | 413 | udata.PosInfo = append(udata.PosInfo, d1) |
414 | 414 | var d2 DataDesc | ... | ... |