diff options
| author | Schark <jordan@schark.online> | 2026-02-25 14:42:10 -0500 |
|---|---|---|
| committer | Schark <jordan@schark.online> | 2026-02-25 14:42:10 -0500 |
| commit | 0d880210ee0d70d61bc055eecbdf0811be03ba3e (patch) | |
| tree | 8cb4f3274453e16a82711fe33be8c13c1ad2bcb6 | |
| parent | e0e3d81900067a632f9b293b6359929bbab73d7c (diff) | |
| download | cs2pov-0d880210ee0d70d61bc055eecbdf0811be03ba3e.tar.gz cs2pov-0d880210ee0d70d61bc055eecbdf0811be03ba3e.zip | |
Final round accounted for
Diffstat (limited to '')
| -rw-r--r-- | cs2pov/navigation.py | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/cs2pov/navigation.py b/cs2pov/navigation.py index a1adec3..76b6b12 100644 --- a/cs2pov/navigation.py +++ b/cs2pov/navigation.py @@ -261,10 +261,9 @@ def recording_loop_tick_nav( death_log_position, verbose ) # Advance past any messages generated during gototick seek - death_log_position = console_log_path.stat().st_size - #eof = console_log_path.stat().st_size - #death_log_position = eof - #log_position = eof + eof = console_log_path.stat().st_size + death_log_position = eof + log_position = eof state.segment_start_wall_time = time.time() if not has_more: print(" All alive segments complete") @@ -308,10 +307,9 @@ def recording_loop_tick_nav( death_log_position, verbose ) # Advance past any messages generated during gototick seek - death_log_position = console_log_path.stat().st_size - #eof = console_log_path.stat().st_size - #death_log_position = eof - #log_position = eof + eof = console_log_path.stat().st_size + death_log_position = eof + log_position = eof state.segment_start_wall_time = time.time() if not has_more: print(" All alive segments complete") |
