GC-Proto/proto/PlayerMatchAgreedResultNotify.proto
2023-04-11 11:14:48 +08:00

24 lines
479 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "MatchType.proto";
// CmdId: 4192
// Name: APIPBBJHNFE
message PlayerMatchAgreedResultNotify {
// Name: LHJPPCIIDKM
enum Reason {
SUCC = 0;
TARGET_SCENE_CANNOT_ENTER = 1;
SELF_MP_UNAVAILABLE = 2;
OTHER_DATA_VERSION_NOT_LATEST = 3;
DATA_VERSION_NOT_LATEST = 4;
}
MatchType match_type = 1;
uint32 target_uid = 6;
Reason reason = 14;
}