ag-timemachine
Advanced tools
Comparing version 1.0.48 to 1.0.49
{ | ||
"name": "ag-timemachine", | ||
"version": "1.0.48", | ||
"version": "1.0.49", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -77,3 +77,3 @@ "use strict"; | ||
AgTmPlayer.prototype.speedup = function () { | ||
if (this._speed.value >= 9) | ||
if (this._speed.value >= 99) | ||
return; | ||
@@ -84,3 +84,3 @@ this._speed.value++; | ||
AgTmPlayer.prototype.slowdown = function () { | ||
if (this._speed.value <= -9) | ||
if (this._speed.value <= -99) | ||
return; | ||
@@ -87,0 +87,0 @@ this._speed.value--; |
63662