From 015742626c9deaa014003202fa6981a3fa9f9df9 Mon Sep 17 00:00:00 2001 From: zqj <582132116@qq.com> Date: Wed, 11 May 2022 15:06:24 +0800 Subject: [PATCH] fix: hero.exp int64 to int32 --- models.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models.proto b/models.proto index 04d0bb8..5e6c7a1 100644 --- a/models.proto +++ b/models.proto @@ -18,7 +18,7 @@ message Hero { int32 rein_count = 5; int32 rein_point = 6; string equipments = 7; //"id=type id1=type1" - int64 exp = 8; + int32 exp = 8; } message Equipment { -- libgit2 0.21.2