Commit 5781eafa2f9a00a49462b6e209a9335aa668dff5
1 parent
af502418
Exists in
master
提交
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/HttpServer/logic/logic.go
... | ... | @@ -1329,8 +1329,8 @@ func HandlerQueryPlayerRank(w http.ResponseWriter, data string, uuid int) { |
1329 | 1329 | tmp.Nickname = rindo.NickName |
1330 | 1330 | tmp.Headurl = rindo.Head |
1331 | 1331 | tmp.Rank = rank |
1332 | - tmp.CatName = rindo.CalcHigestCatName() | |
1333 | - tmp.Level = len(rindo.BuyCatInfo) | |
1332 | + tmp.CatName, tmp.Level = rindo.CalcHigestCatName() | |
1333 | + //tmp.Level = len(rindo.BuyCatInfo) | |
1334 | 1334 | resp.Data = append(resp.Data, tmp) |
1335 | 1335 | } |
1336 | 1336 | } | ... | ... |