From 4d16ab8921f830acf9da1fd8d0f9c1538a10d145 Mon Sep 17 00:00:00 2001 From: mmcw-dev Date: Fri, 20 Oct 2017 20:08:43 -0400 Subject: [PATCH] Confarnit! Caught the same error in another place, was referencing a variable to an undefined variable. --- lib/intval/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/intval/index.js b/lib/intval/index.js index 389e849..da827aa 100644 --- a/lib/intval/index.js +++ b/lib/intval/index.js @@ -268,7 +268,7 @@ intval.frame = function (dir = null, time = null) { } if (time === null && intval._state.frame.time !== 0) { - time = intval._state.time + time = intval._state.frame.time } else if (time === null) { time = 0 //default speed }