Skip to content

Commit

Permalink
don't start timer after !s <X>
Browse files Browse the repository at this point in the history
  • Loading branch information
tslashd authored Feb 7, 2024
1 parent 958fcf8 commit c8be7de
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/ST-Events/TriggerEndTouch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,11 @@ internal HookResult OnTriggerEndTouch(CEntityIOOutput output, string name, CEnti
}

// MAP START ZONE
player.Timer.Start();
player.ReplayRecorder.CurrentSituation = ReplayFrameSituation.START_RUN;
if (!player.Timer.IsStageMode)
{
player.Timer.Start();
player.ReplayRecorder.CurrentSituation = ReplayFrameSituation.START_RUN;
}

/* Revisit
// Wonky Prespeed check
Expand Down

0 comments on commit c8be7de

Please sign in to comment.