Skip to content

Commit

Permalink
[Fix] Protobuf error on server loading (#380)
Browse files Browse the repository at this point in the history
* Change all 'strings' to 'bytes'

Co-authored-by: Marcos <66353315+marcosvf132@users.noreply.github.com>
  • Loading branch information
beats-dh and marcosvf132 authored May 22, 2022
1 parent 33dff84 commit 5ad63c1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/protobuf/appearances.proto
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ message Appearance {
optional uint32 id = 1;
repeated FrameGroup frame_group = 2;
optional AppearanceFlags flags = 3;
optional string name = 4;
optional string description = 5;
optional bytes name = 4;
optional bytes description = 5;
}

message AppearanceFlags {
Expand Down Expand Up @@ -218,12 +218,12 @@ message AppearanceFlagMarket {
}

message AppearanceFlagNPC {
optional string name = 1;
optional string location = 2;
optional bytes name = 1;
optional bytes location = 2;
optional uint32 sale_price = 3;
optional uint32 buy_price = 4;
optional uint32 currency_object_type_id = 5;
optional string currency_quest_flag_display_name = 6;
optional bytes currency_quest_flag_display_name = 6;
}

message AppearanceFlagAutomap {
Expand Down

0 comments on commit 5ad63c1

Please sign in to comment.