Replay Speed
This commit is contained in:
parent
b4fdc3b326
commit
a551311051
@ -1458,7 +1458,7 @@ control.prototype.replay = function () {
|
||||
core.changeFloor(floorId, stair, null, null, function () {
|
||||
core.replay();
|
||||
});
|
||||
}, 750);
|
||||
}, 750 / Math.sqrt(core.status.replay.speed));
|
||||
return;
|
||||
}
|
||||
}
|
||||
@ -1491,7 +1491,7 @@ control.prototype.replay = function () {
|
||||
core.status.event.selection = parseInt(selections.shift());
|
||||
core.events.openShop(shopId, false);
|
||||
|
||||
}, 750);
|
||||
}, 750 / Math.sqrt(core.status.replay.speed));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
@ -559,7 +559,7 @@ events.prototype.doAction = function() {
|
||||
core.status.route.push("choices:"+index);
|
||||
core.events.insertAction(data.choices[index].action);
|
||||
core.events.doAction();
|
||||
}, 750)
|
||||
}, 750 / Math.sqrt(core.status.replay.speed))
|
||||
}
|
||||
else {
|
||||
core.stopReplay();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user