We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9452d68 commit 4a73392Copy full SHA for 4a73392
packages/@dcl/sdk-commands/src/commands/start/index.ts
@@ -244,9 +244,9 @@ export async function main(options: Options) {
244
const sortedURLs = availableURLs.sort((a, _b) => {
245
return a.toLowerCase().includes('localhost') || a.includes('127.0.0.1') || a.includes('0.0.0.0') ? -1 : 1
246
})
247
- const bevyUrl = `https://decentraland.zone/bevy-web/?preview=true&initialRealm=${
+ const bevyUrl = `https://decentraland.zone/bevy-web/?preview=true&realm=${
248
new URL(sortedURLs[0]).origin
249
- }&location=${baseCoords.x},${baseCoords.y}`
+ }&position=${baseCoords.x},${baseCoords.y}`
250
if (!explorerAlpha) {
251
if (bevyWeb) {
252
components.logger.log(` ${bevyUrl}`)
0 commit comments