Skip to content

Commit

Permalink
Merge branch 'main' into feat/map-pins
Browse files Browse the repository at this point in the history
  • Loading branch information
davidejensen authored Aug 5, 2024
2 parents 9d648bb + 3efaea5 commit 9ba99e5
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions proto/decentraland/realm/about.proto
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@ message AboutResponse {
bool accepting_users = 7;

// @deprecated This message was never used but it's still here for compatibility reasons
// The reserved keyword is not working for all the toolset we have, so in the meanwhile it keeps commented
message MinimapConfiguration {
reserved 1;
reserved "enabled";
// reserved "enabled";
reserved 2;
reserved "data_image";
// reserved "data_image";
reserved 3;
reserved "estate_image";
// reserved "estate_image";
}

message MapConfiguration {
Expand Down Expand Up @@ -84,8 +85,12 @@ message AboutResponse {
uint32 network_id = 2;
repeated string global_scenes_urn = 3;
repeated string scenes_urn = 4;

// The name "minimap" can't be used in this message
// The reserved keyword is not working for all the toolset we have, so in the meanwhile it keeps commented
reserved 5;
reserved "minimap";
// reserved "minimap";

optional SkyboxConfiguration skybox = 6;

// A content server to be used to load the parcels around the user. Uses the POST /entities/active endpoint
Expand Down

0 comments on commit 9ba99e5

Please sign in to comment.