Skip to content

Commit ea9bda0

Browse files
committed
SERVER: Update zone_delay_timer
1 parent 9dc643d commit ea9bda0

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

source/server/ai/zoning_core.qc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,11 @@ string zone_version;
2828
float zone_timer;
2929

3030
float num_zones;
31-
// offset zone check delay to every 3 seconds
31+
// offset zone check delay to every 2.75 seconds
3232
// in attempt to reduce calculation load
33-
float zone_timer_delay = 3;
33+
// tested against values produced by ai_delay_time
34+
// to ensure we are running seperately from pathfinding
35+
float zone_timer_delay = 2.75;
3436
// zone_changed returns true if the current zone is different
3537
// from the previous zone
3638
float zone_changed;

0 commit comments

Comments
 (0)