Fix tickrate from 66 to 200/3

This commit is contained in:
Lauri Räsänen 2025-03-19 02:20:46 +02:00
parent 9e62c5c9cc
commit a55cb347fb

View file

@ -452,7 +452,7 @@ class Timer
if (this.zones[i].Clips(ply)) if (this.zones[i].Clips(ply))
{ {
local run_ticks = this.tick_count - start_tick; local run_ticks = this.tick_count - start_tick;
local run_time = run_ticks / 66.0; local run_time = run_ticks * 3.0 / 200.0;
if (i == this.zones.len() - 1) if (i == this.zones.len() - 1)
{ {