aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-06-12 07:20:20 -0700
committerFuwn <[email protected]>2024-06-12 07:20:26 -0700
commit67e646ee3f93ff7a6f28791457f836d397c52e46 (patch)
tree7dd217bdeb3f606fc082bd3ed47979f96b88f8c3
parentdocs: add readme (diff)
downloadworldserver-protobufs-67e646ee3f93ff7a6f28791457f836d397c52e46.tar.xz
worldserver-protobufs-67e646ee3f93ff7a6f28791457f836d397c52e46.zip
refactor(ShortLocationCommand): clearer delta notation
-rw-r--r--commands/short_location_command.proto6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/short_location_command.proto b/commands/short_location_command.proto
index 2be8ac1..24037ca 100644
--- a/commands/short_location_command.proto
+++ b/commands/short_location_command.proto
@@ -3,7 +3,7 @@ syntax = "proto3";
package whirl;
message ShortLocationCommand {
- int32 dx = 1;
- int32 dy = 2;
- int32 ddirection = 3;
+ int32 delta_x = 1;
+ int32 delta_y = 2;
+ int32 delta_direction = 3;
}