Reduce auto playback speed to avoid collision with animation.

This commit is contained in:
yukirij 2024-08-26 20:53:36 -07:00
parent 5f7b722bed
commit 3aaf7a8ce1

View File

@ -1121,7 +1121,7 @@ const INTERFACE = {
replay_auto() { replay_auto() {
if(INTERFACE_DATA.replay_auto) { if(INTERFACE_DATA.replay_auto) {
INTERFACE.replay_jump(INTERFACE_DATA.replay_turn + 1, true); INTERFACE.replay_jump(INTERFACE_DATA.replay_turn + 1, true);
setTimeout(INTERFACE.replay_auto, 1000); setTimeout(INTERFACE.replay_auto, 1250);
} }
}, },