Skip to content

Commit

Permalink
don't rewind if finished
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomityGuy committed Jun 4, 2023
1 parent 8b58181 commit fdfc67f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/MarbleWorld.hx
Original file line number Diff line number Diff line change
Expand Up @@ -995,7 +995,8 @@ class MarbleWorld extends Scheduler {
|| MarbleGame.instance.touchInput.rewindButton.pressed
|| Gamepad.isDown(Settings.gamepadSettings.rewind))
&& Settings.optionsSettings.rewindEnabled
&& !this.isWatching) {
&& !this.isWatching
&& this.finishTime == null) {
this.rewinding = true;
} else {
if ((Key.isReleased(Settings.controlsSettings.rewind)
Expand Down

0 comments on commit fdfc67f

Please sign in to comment.