From df7840e257fb98234c3cfca1030d263c0e9292a3 Mon Sep 17 00:00:00 2001 From: grimm <1769111741@qq.com> Date: Thu, 1 Feb 2024 17:18:27 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AB=9E=E6=8A=80=E5=9C=BA=E5=8D=8F=E8=AE=AE?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BA=8C=E7=89=88=EF=BC=8C=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E7=AC=AC=E4=B8=80=E5=90=8D=E6=8B=8D=E8=84=B8=E6=8E=A8=E9=80=81?= =?UTF-8?q?=E5=8D=8F=E8=AE=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/ArenaInfoProto.proto | 5 +++++ protos/MessageTypeProto.proto | 1 + 2 files changed, 6 insertions(+) diff --git a/protos/ArenaInfoProto.proto b/protos/ArenaInfoProto.proto index f84f598..74fae4d 100644 --- a/protos/ArenaInfoProto.proto +++ b/protos/ArenaInfoProto.proto @@ -292,4 +292,9 @@ import "CommonProto.proto"; optional int32 myScoreChange = 3; //我的分数变化值 optional int32 defScoreChange = 4; //对手分数变化值 optional Drop drop = 5; //奖励道具 + } + + // 新竞技场第一名拍脸推送 + message NewArenaFirstIndication{ + repeated ArenaPersonInfo player = 1; } \ No newline at end of file diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 4767df9..24ba591 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -1689,6 +1689,7 @@ enum MessageType{ RefreshArenaOpponentResponse = 6000040; NewArenaChallengeRequest = 6000041; NewArenaChallengeResponse = 6000042; + NewArenaFirstIndication = 6000043; }