From 8e0014e556b911cbaa46071f804d3691b35f1e04 Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Tue, 9 Aug 2022 07:09:41 +0800 Subject: fix gyro timer on master mode --- features/dungeonSolvers/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'features') diff --git a/features/dungeonSolvers/index.js b/features/dungeonSolvers/index.js index 53a3556..ece6f4b 100644 --- a/features/dungeonSolvers/index.js +++ b/features/dungeonSolvers/index.js @@ -418,7 +418,7 @@ class DungeonSolvers extends Feature { } timerThing(position) { - this.timersData.push([position, Date.now() + 5000]) //TODO: 1.5s less on m6 + this.timersData.push([position, Date.now() + (this.FeatureManager.features["dataLoader"].class.dungeonFloor[0] === "M" ? 3500 : 5000)]) } areaUpdated() { -- cgit