From e0ebe195f90f0c56fa0c6e1008c418de6507dd9b Mon Sep 17 00:00:00 2001 From: Cansy Date: Mon, 25 Sep 2023 10:18:11 +0200 Subject: [PATCH] lint fixes --- Party-Time/package.json | 2 +- Party-Time/src/index.ts | 4 ++-- Party-Time/src/sceneFactory.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Party-Time/package.json b/Party-Time/package.json index ab913a255..73f208237 100644 --- a/Party-Time/package.json +++ b/Party-Time/package.json @@ -3,7 +3,7 @@ "description": "SDK7 Template scene", "version": "1.0.0", "devDependencies": { - "@dcl/js-runtime": "next", + "@dcl/js-runtime": "7.3.15-6176019393.commit-761f180", "@dcl/sdk": "next" }, "engines": { diff --git a/Party-Time/src/index.ts b/Party-Time/src/index.ts index 709bbd907..665ed1484 100644 --- a/Party-Time/src/index.ts +++ b/Party-Time/src/index.ts @@ -7,8 +7,8 @@ export function main() { const signpost = buildScene() // Time for the party to start - const partyStart = new Date('2023-09-14T19:00:00+03:00') // GMT+3 - const partyEnd = new Date('2023-09-15T02:00:00+03:00') // GMT+3 + const partyStart = new Date('2023-10-31T19:00:00+03:00') // GMT+3 + const partyEnd = new Date('2023-11-01T02:00:00+03:00') // GMT+3 // Function to call the API async function checkTime() { diff --git a/Party-Time/src/sceneFactory.ts b/Party-Time/src/sceneFactory.ts index 8859e7148..4c211fa6d 100644 --- a/Party-Time/src/sceneFactory.ts +++ b/Party-Time/src/sceneFactory.ts @@ -148,7 +148,7 @@ export function buildScene() { }) // Signpost Text - const signpostText = engine.addEntity(true) + const signpostText = engine.addEntity() Transform.create(signpostText, { parent: signpost, position: { x: 0, y: 1.3, z: 0.45 },