Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion proto/decentraland/kernel/apis/restricted_actions.proto
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@ message MovePlayerToRequest {
}

message TeleportToRequest {
decentraland.common.Vector2 world_coordinates = 1;
// The parcel to land on. Omitted: the realm's default spawn (only meaningful with `realm`).
optional decentraland.common.Vector2 world_coordinates = 1;
// The realm the parcel belongs to: a world name (`foo.dcl.eth`) or a realm url. When set, the
// client changes realm (a full reconnect, even to the realm the player is in) and lands on the
// parcel there. Omitted: the parcel is in the player's current realm.
optional string realm = 2;
}

message TriggerEmoteRequest {
Expand Down Expand Up @@ -102,6 +107,7 @@ service RestrictedActionsService {
// TriggerEmote will trigger an emote in this current user
rpc TriggerEmote(TriggerEmoteRequest) returns (TriggerEmoteResponse) {}

// @deprecated, use TeleportTo with `realm` (and no `world_coordinates` for the realm's default spawn)
// ChangeRealm prompts the user to change to a specific realm
rpc ChangeRealm(ChangeRealmRequest) returns (SuccessResponse) {}

Expand Down
Loading