From b200e173486b27b9a838c9f5b7b6ead84239510a Mon Sep 17 00:00:00 2001 From: Lean Mendoza Date: Thu, 22 Feb 2024 09:21:48 -0300 Subject: [PATCH] chore: bump goerli-plaza-ipfs realm --- godot/src/config/config_data.gd | 2 +- .../ui/components/discover/places/custom_places_generator.gd | 3 ++- godot/src/ui/components/settings/settings.tscn | 2 +- godot/src/ui/explorer.gd | 2 +- .../src/realm/scene_entity_coordinator.rs | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/godot/src/config/config_data.gd b/godot/src/config/config_data.gd index 82603008..827d75fb 100644 --- a/godot/src/config/config_data.gd +++ b/godot/src/config/config_data.gd @@ -191,7 +191,7 @@ func load_from_default(): self.session_account = {} self.guest_profile = {} - self.last_realm_joined = "https://sdk-team-cdn.decentraland.org/ipfs/goerli-plaza-main" + self.last_realm_joined = "https://sdk-team-cdn.decentraland.org/ipfs/goerli-plaza-update-asset-pack-lib" self.last_parcel_position = Vector2i(72, -10) diff --git a/godot/src/ui/components/discover/places/custom_places_generator.gd b/godot/src/ui/components/discover/places/custom_places_generator.gd index c3e3bd14..2053831b 100644 --- a/godot/src/ui/components/discover/places/custom_places_generator.gd +++ b/godot/src/ui/components/discover/places/custom_places_generator.gd @@ -59,7 +59,8 @@ func on_request(_offset: int, _limit: int) -> void: "contact_name": "SDK Team", "image": "https://i.imgur.com/Zsl1r2d.png", "world": true, - "world_name": "https://sdk-team-cdn.decentraland.org/ipfs/goerli-plaza-main" + "world_name": + "https://sdk-team-cdn.decentraland.org/ipfs/goerli-plaza-update-asset-pack-lib" } ) diff --git a/godot/src/ui/components/settings/settings.tscn b/godot/src/ui/components/settings/settings.tscn index fccc42ab..501f7f4e 100644 --- a/godot/src/ui/components/settings/settings.tscn +++ b/godot/src/ui/components/settings/settings.tscn @@ -479,7 +479,7 @@ popup/item_1/text = "http://127.0.0.1:8000" popup/item_1/id = 1 popup/item_2/text = "https://sdk-test-scenes.decentraland.zone" popup/item_2/id = 2 -popup/item_3/text = "https://sdk-team-cdn.decentraland.org/ipfs/goerli-plaza-main" +popup/item_3/text = "https://sdk-team-cdn.decentraland.org/ipfs/goerli-plaza-update-asset-pack-lib" popup/item_3/id = 3 popup/item_4/text = "https://peer-testing.decentraland.org" popup/item_4/id = 4 diff --git a/godot/src/ui/explorer.gd b/godot/src/ui/explorer.gd index eb0c3054..c8977b4a 100644 --- a/godot/src/ui/explorer.gd +++ b/godot/src/ui/explorer.gd @@ -147,7 +147,7 @@ func _ready(): else: if Global.config.last_realm_joined.is_empty(): Global.realm.async_set_realm( - "https://sdk-team-cdn.decentraland.org/ipfs/goerli-plaza-main" + "https://sdk-team-cdn.decentraland.org/ipfs/goerli-plaza-update-asset-pack-lib" ) else: Global.realm.async_set_realm(Global.config.last_realm_joined) diff --git a/rust/decentraland-godot-lib/src/realm/scene_entity_coordinator.rs b/rust/decentraland-godot-lib/src/realm/scene_entity_coordinator.rs index 465765b4..94ccd299 100644 --- a/rust/decentraland-godot-lib/src/realm/scene_entity_coordinator.rs +++ b/rust/decentraland-godot-lib/src/realm/scene_entity_coordinator.rs @@ -587,7 +587,7 @@ mod tests { let entities_active_url = "https://sdk-test-scenes.decentraland.zone/content/entities/active".to_string(); let content_url = - "https://sdk-team-cdn.decentraland.org/ipfs/goerli-plaza-main/contents".to_string(); + "https://sdk-team-cdn.decentraland.org/ipfs/goerli-plaza-update-asset-pack-lib/contents".to_string(); let mut scene_entity_coordinator = SceneEntityCoordinator::new(entities_active_url.clone(), content_url.clone(), false);