diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-08-09 07:09:41 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-08-09 07:09:41 +0800 |
commit | 8e0014e556b911cbaa46071f804d3691b35f1e04 (patch) | |
tree | e66a3e8b45aa60f9dcd192ac090fe9a3908e6070 /features/dungeonSolvers/index.js | |
parent | da9169999c19f702951b5704421e853fb007780f (diff) | |
download | SoopyV2-8e0014e556b911cbaa46071f804d3691b35f1e04.tar.gz SoopyV2-8e0014e556b911cbaa46071f804d3691b35f1e04.tar.bz2 SoopyV2-8e0014e556b911cbaa46071f804d3691b35f1e04.zip |
fix gyro timer on master mode
Diffstat (limited to 'features/dungeonSolvers/index.js')
-rw-r--r-- | features/dungeonSolvers/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
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() { |