diff options
| author | Fuwn <[email protected]> | 2024-06-12 09:09:58 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-06-12 09:09:58 -0700 |
| commit | dca92863146b9d65689f60db1d3c2887eeb3e7bb (patch) | |
| tree | 69be5a9645390793e6faccd70c0ba257657cc58b /commands | |
| parent | feat(test.py): larger test suite (diff) | |
| download | worldserver-protobufs-dca92863146b9d65689f60db1d3c2887eeb3e7bb.tar.xz worldserver-protobufs-dca92863146b9d65689f60db1d3c2887eeb3e7bb.zip | |
refactor: rename property commands
Diffstat (limited to 'commands')
| -rw-r--r-- | commands/property_command.proto (renamed from commands/prop_command.proto) | 2 | ||||
| -rw-r--r-- | commands/property_request_command.proto (renamed from commands/prop_request_command.proto) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/commands/prop_command.proto b/commands/property_command.proto index c847c92..894003b 100644 --- a/commands/prop_command.proto +++ b/commands/property_command.proto @@ -4,6 +4,6 @@ package whirl; import "old_property_list.proto"; -message PropCommand { +message PropertyCommand { OldPropertyList property_list = 1; }
\ No newline at end of file diff --git a/commands/prop_request_command.proto b/commands/property_request_command.proto index 040bf4d..e7ba772 100644 --- a/commands/prop_request_command.proto +++ b/commands/property_request_command.proto @@ -2,6 +2,6 @@ syntax = "proto3"; package whirl; -message PropRequestCommand { +message PropertyRequestCommand { repeated int32 variable_ids = 1; } |