Skip to content

Commit 4a73392

Browse files
authored
update bevy params (#1306)
1 parent 9452d68 commit 4a73392

File tree

1 file changed

+2
-2
lines changed
  • packages/@dcl/sdk-commands/src/commands/start

1 file changed

+2
-2
lines changed

packages/@dcl/sdk-commands/src/commands/start/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,9 +244,9 @@ export async function main(options: Options) {
244244
const sortedURLs = availableURLs.sort((a, _b) => {
245245
return a.toLowerCase().includes('localhost') || a.includes('127.0.0.1') || a.includes('0.0.0.0') ? -1 : 1
246246
})
247-
const bevyUrl = `https://decentraland.zone/bevy-web/?preview=true&initialRealm=${
247+
const bevyUrl = `https://decentraland.zone/bevy-web/?preview=true&realm=${
248248
new URL(sortedURLs[0]).origin
249-
}&location=${baseCoords.x},${baseCoords.y}`
249+
}&position=${baseCoords.x},${baseCoords.y}`
250250
if (!explorerAlpha) {
251251
if (bevyWeb) {
252252
components.logger.log(` ${bevyUrl}`)

0 commit comments

Comments
 (0)