From 79b320e0064fa1a86bc3c6615c452a23c78ef279 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Wed, 6 Nov 2019 19:14:17 +0800 Subject: [PATCH] 1 --- server/tools/protobuild/cs_proto.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/tools/protobuild/cs_proto.proto b/server/tools/protobuild/cs_proto.proto index b16d411..690bf29 100755 --- a/server/tools/protobuild/cs_proto.proto +++ b/server/tools/protobuild/cs_proto.proto @@ -491,9 +491,9 @@ message MFTeamData optional MFVector2D pos = 2; //位置 optional MFVector2D dir = 3; //方向 optional float health = 4; //血量 - optional bool disconnected = 5; //是否短线 - optional bool dead = 6; //是否死亡 - optional bool downed = 7; //是否倒下 + optional bool disconnected = 5 [default = false]; //是否短线 + optional bool dead = 6 [default = false]; //是否死亡 + optional bool downed = 7 [default = false]; //是否倒下 optional string name = 8; //名字 optional float max_health = 9; //最大血量 }