From 13c5b41aef1ed3743243d743bcec72485e6b545c Mon Sep 17 00:00:00 2001 From: Le~Kat Date: Sat, 25 Feb 2023 08:35:18 -0500 Subject: [PATCH] hopefully now it's fixed? --- apps/multidice/ChangeLog | 1 + apps/multidice/app.js | 4 ++-- apps/multidice/metadata.json | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/apps/multidice/ChangeLog b/apps/multidice/ChangeLog index a9fc055c0..ce7632d7c 100644 --- a/apps/multidice/ChangeLog +++ b/apps/multidice/ChangeLog @@ -8,3 +8,4 @@ 1.06: increased vibration again 1.07: IDK how to use promises properly 1.08: still trying to fix the lack of vibrations +1.09: hopefully now it's fixed? diff --git a/apps/multidice/app.js b/apps/multidice/app.js index 789cf26bd..8f027c47a 100644 --- a/apps/multidice/app.js +++ b/apps/multidice/app.js @@ -132,10 +132,10 @@ function random (max) { function vibrate() { Bangle.on ('accel', voidFn); - Bangle.buzz().then ((value) => + Bangle.buzz().then ((value) => { Bangle.on ('accel', accelHandler) - ); + }); } drawMenu(); diff --git a/apps/multidice/metadata.json b/apps/multidice/metadata.json index effb1c57b..95071c67b 100644 --- a/apps/multidice/metadata.json +++ b/apps/multidice/metadata.json @@ -1,7 +1,7 @@ { "id": "multidice", "name": "multiple dice roller", "shortName":"multidice", - "version":"1.08", + "version":"1.09", "description": "roll anywhere from 1-8 dice at the same time", "icon": "app.png", "tags": "tool,game",