Update WorldPlayerLocationNotify.proto to 2.6

This commit is contained in:
Melledy
2022-04-20 18:55:38 -07:00
parent 5da2e7c1a4
commit 3edbb50d48
2 changed files with 12 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "PlayerLocationInfo.proto";
message WorldPlayerLocationInfo {
uint32 sceneId = 1;
PlayerLocationInfo playerLoc = 2;
}

View File

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