From 5b7ec13972e4a2a5fc3d4c442590008864199e36 Mon Sep 17 00:00:00 2001 From: Alejo Thomas Ortega Date: Fri, 20 Feb 2026 17:04:02 -0300 Subject: [PATCH] feat: profile and scenes updates --- .../decentraland/kernel/comms/v3/archipelago.proto | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/proto/decentraland/kernel/comms/v3/archipelago.proto b/proto/decentraland/kernel/comms/v3/archipelago.proto index 8c5d6519..a1d899ca 100644 --- a/proto/decentraland/kernel/comms/v3/archipelago.proto +++ b/proto/decentraland/kernel/comms/v3/archipelago.proto @@ -39,6 +39,18 @@ message KickedMessage { KickedReason reason = 1; } +message ProfileUpdateNotification { + string address = 1; + string profile_json = 2; + int64 timestamp = 3; +} + +message SceneUpdateNotification { + string scene_id = 1; + repeated string parcels = 2; + int64 timestamp = 3; +} + message ServerPacket { oneof message { ChallengeResponseMessage challenge_response = 1; @@ -47,6 +59,8 @@ message ServerPacket { LeftIslandMessage left_island = 4; JoinIslandMessage join_island = 5; KickedMessage kicked = 6; + ProfileUpdateNotification profile_update = 7; + SceneUpdateNotification scene_update = 8; } }