This commit is contained in:
oc 2018-12-14 10:33:59 +08:00
parent f838ef3997
commit 68dc1b6b1b

View File

@ -1136,13 +1136,9 @@ events.prototype.doAction = function() {
}
break;
case "sleep": // 等待多少毫秒
if (core.status.replay.replaying)
setTimeout(function() {
core.events.doAction();
else {
setTimeout(function () {
core.events.doAction();
}, data.time);
}
}, core.status.replay.replaying?20:data.time);
break;
case "wait":
if (core.status.replay.replaying) {