From 10d404b186a9e399c3423a625a3cac443ed7c8a4 Mon Sep 17 00:00:00 2001 From: Schark Date: Wed, 25 Feb 2026 15:29:28 -0500 Subject: First round survival bug fixed --- cs2pov/navigation.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/cs2pov/navigation.py b/cs2pov/navigation.py index 76b6b12..b2462a3 100644 --- a/cs2pov/navigation.py +++ b/cs2pov/navigation.py @@ -287,13 +287,7 @@ def recording_loop_tick_nav( target_end_time = r.prestart_time - 0.2 break - # For segment 0, use target_end_time directly (time from demo start) - # since we don't know the exact demo position when the loop started. - # For subsequent segments (after gototick), demo is at start_time. - if state.current_segment_index == 0: - expected_duration = target_end_time - else: - expected_duration = target_end_time - current_seg.start_time + expected_duration = target_end_time - current_seg.start_time segment_elapsed = time.time() - state.segment_start_wall_time if segment_elapsed >= expected_duration: -- cgit v1.2.3-18-g5258