From cfabc507ae790df57b64ecffd5277d5fcef2c6b3 Mon Sep 17 00:00:00 2001 From: Eric Rosenbaum Date: Tue, 25 Oct 2016 10:23:06 -0400 Subject: [PATCH] slower retry rate for play sound --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index e5ea978..aa920da 100644 --- a/src/index.js +++ b/src/index.js @@ -73,7 +73,7 @@ AudioEngine.prototype.playSound = function (index) { log.warn('sound ' + index + ' not loaded yet'); setTimeout(function () { this.playSound(index); - }.bind(this), 100); + }.bind(this), 500); } };