made the delay needlessly long to see if it even does anything
parent
5d39968891
commit
f85c17814c
|
|
@ -13,3 +13,4 @@
|
||||||
1.11: decreased vibration time, decreased accel requirement
|
1.11: decreased vibration time, decreased accel requirement
|
||||||
1.12: issue with app calling roll function too many times at startup
|
1.12: issue with app calling roll function too many times at startup
|
||||||
1.13: added a delay after the buzzer stops to prevent multi-rolling
|
1.13: added a delay after the buzzer stops to prevent multi-rolling
|
||||||
|
1.14: made the delay needlessly long to see if it even does anything
|
||||||
|
|
|
||||||
|
|
@ -132,7 +132,7 @@ function rollDice() {
|
||||||
setTimeout (function() { // wait 50ms *after* the buzzing has stopped
|
setTimeout (function() { // wait 50ms *after* the buzzing has stopped
|
||||||
|
|
||||||
Bangle.on ('accel', accelHandler);
|
Bangle.on ('accel', accelHandler);
|
||||||
}, 50);
|
}, 1000);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{ "id": "multidice",
|
{ "id": "multidice",
|
||||||
"name": "multiple dice roller",
|
"name": "multiple dice roller",
|
||||||
"shortName":"multidice",
|
"shortName":"multidice",
|
||||||
"version":"1.13",
|
"version":"1.14",
|
||||||
"description": "roll anywhere from 1-8 dice at the same time",
|
"description": "roll anywhere from 1-8 dice at the same time",
|
||||||
"icon": "app.png",
|
"icon": "app.png",
|
||||||
"tags": "tool,game",
|
"tags": "tool,game",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue