diff options
| author | Fuwn <[email protected]> | 2024-06-12 06:40:45 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-06-12 06:40:45 -0700 |
| commit | 53578f01ecfe6af851cc88d5d92d5a8fc15d1b6e (patch) | |
| tree | e21f15f6d811635e52d9f403b2404661917a2af1 /NetPacket.proto | |
| parent | feat: initial commit (diff) | |
| download | worldserver-protobufs-53578f01ecfe6af851cc88d5d92d5a8fc15d1b6e.tar.xz worldserver-protobufs-53578f01ecfe6af851cc88d5d92d5a8fc15d1b6e.zip | |
refactor(NetPacket): rename fields
Diffstat (limited to 'NetPacket.proto')
| -rw-r--r-- | NetPacket.proto | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/NetPacket.proto b/NetPacket.proto index 24f2c85..b923ab1 100644 --- a/NetPacket.proto +++ b/NetPacket.proto @@ -35,8 +35,8 @@ message NetPacket { uint32 short_object_id = 2; string long_object_id = 3; } - uint32 command_type = 4; - oneof packet { + uint32 type = 4; + oneof command { AppearActorCmd appear_actor_cmd = 5; AppInitCmd app_init_cmd = 6; PropCmd prop_cmd = 7; |