diff options
| author | Fuwn <[email protected]> | 2024-06-12 20:13:45 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-06-12 20:13:45 -0700 |
| commit | eb70cecc1903447b1776e5110d9786778df32615 (patch) | |
| tree | 9164504f25b81cf739dc909e6530fd7234b4477b /object_id.proto | |
| parent | refactor: rename property commands (diff) | |
| download | worldserver-protobufs-eb70cecc1903447b1776e5110d9786778df32615.tar.xz worldserver-protobufs-eb70cecc1903447b1776e5110d9786778df32615.zip | |
fix: oneof ObjectID id
Diffstat (limited to 'object_id.proto')
| -rw-r--r-- | object_id.proto | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/object_id.proto b/object_id.proto index 0709e7b..9d4f5cf 100644 --- a/object_id.proto +++ b/object_id.proto @@ -3,6 +3,8 @@ syntax = "proto3"; package whirl; message ObjectID { - int32 short_object_id = 1; - string long_object_id = 2; + oneof object_id { + uint32 short_object_id = 1; + string long_object_id = 2; + } }
\ No newline at end of file |