Skip to content

Commit c1ec606

Browse files
committed
fix: remove comms and policy
1 parent faff25d commit c1ec606

File tree

2 files changed

+1
-22
lines changed

2 files changed

+1
-22
lines changed

src/commands/init.ts

+1-11
Original file line numberDiff line numberDiff line change
@@ -84,18 +84,8 @@ export async function main() {
8484
parcels: ['0,0'],
8585
base: '0,0'
8686
},
87-
communications: {
88-
type: 'webrtc',
89-
signalling: 'https://rendezvous.decentraland.org'
90-
},
91-
policy: {
92-
fly: true,
93-
voiceEnabled: true,
94-
blacklist: [],
95-
teleportPosition: '0,0,0'
96-
},
9787
requiredPermissions: [],
98-
main: 'scene.xml'
88+
main: 'bin/game.js'
9989
}
10090

10191
await dcl.init(sceneMeta, boilerplate as BoilerplateType)

src/sceneJson/types.ts

-11
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,5 @@ export type SceneMetadata = {
1414
base: string
1515
parcels: Array<string>
1616
}
17-
communications: {
18-
type: string
19-
signalling: string
20-
}
21-
policy: {
22-
contentRating?: string
23-
fly: boolean
24-
voiceEnabled: boolean
25-
blacklist: Array<string>
26-
teleportPosition: string
27-
}
2817
requiredPermissions?: string[]
2918
}

0 commit comments

Comments
 (0)