From 3edbb50d489d40be061794856496229531201e38 Mon Sep 17 00:00:00 2001 From: Melledy <52122272+Melledy@users.noreply.github.com> Date: Wed, 20 Apr 2022 18:55:38 -0700 Subject: [PATCH] Update WorldPlayerLocationNotify.proto to 2.6 --- proto/WorldPlayerLocationInfo.proto | 10 ++++++++++ proto/WorldPlayerLocationNotify.proto | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 proto/WorldPlayerLocationInfo.proto diff --git a/proto/WorldPlayerLocationInfo.proto b/proto/WorldPlayerLocationInfo.proto new file mode 100644 index 0000000..8afcf18 --- /dev/null +++ b/proto/WorldPlayerLocationInfo.proto @@ -0,0 +1,10 @@ +syntax = "proto3"; + +option java_package = "emu.grasscutter.net.proto"; + +import "PlayerLocationInfo.proto"; + +message WorldPlayerLocationInfo { + uint32 sceneId = 1; + PlayerLocationInfo playerLoc = 2; +} diff --git a/proto/WorldPlayerLocationNotify.proto b/proto/WorldPlayerLocationNotify.proto index d43efba..c71898a 100644 --- a/proto/WorldPlayerLocationNotify.proto +++ b/proto/WorldPlayerLocationNotify.proto @@ -2,8 +2,8 @@ syntax = "proto3"; option java_package = "emu.grasscutter.net.proto"; -import "PlayerLocationInfo.proto"; +import "WorldPlayerLocationInfo.proto"; message WorldPlayerLocationNotify { - repeated PlayerLocationInfo playerLocList = 1; + repeated WorldPlayerLocationInfo playerLocList = 2; }