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; //最大血量 }