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; }