From e52abb9c4e57337c87e3579e59e1a1a5782f6655 Mon Sep 17 00:00:00 2001 From: lvxinran Date: Mon, 17 May 2021 21:07:30 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=8F=E9=AA=8C=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/CommonProto.proto | 2 +- protos/PlayerInfoProto.proto | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index 35cb218..7af5d50 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -15,7 +15,7 @@ option optimize_for = SPEED; optional int32 uid = 1; optional string nickName = 2; optional int32 level = 3; - optional int32 exp = 4; + optional int64 exp = 4; optional int32 vipLevel = 5; optional int32 familyId = 6; optional int32 head = 7; diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index aaf2b8c..b7a6279 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -530,7 +530,7 @@ import "CommonProto.proto"; message UpdateUserExpIndicaiton{ optional int32 level = 1 ;// 玩家等级 - optional int32 exp =2 ; // 玩家经验 + optional int64 exp =2 ; // 玩家经验 }