Fix tickrate from 66 to 200/3
This commit is contained in:
parent
9e62c5c9cc
commit
a55cb347fb
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue