From 4ac152b3bf0f8aff323c0d9ebce6397524d8b1ad Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 19 Oct 2016 01:55:46 +1000 Subject: [PATCH] Fix monster ticrates --- qcsrc/common/monsters/sv_monsters.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/common/monsters/sv_monsters.qc b/qcsrc/common/monsters/sv_monsters.qc index ff1a5d397..8fe84a3b6 100644 --- a/qcsrc/common/monsters/sv_monsters.qc +++ b/qcsrc/common/monsters/sv_monsters.qc @@ -1213,7 +1213,7 @@ void Monster_Anim(entity this) void Monster_Think(entity this) { setthink(this, Monster_Think); - this.nextthink = this.ticrate; + this.nextthink = time + this.ticrate; if(this.monster_lifetime) if(time >= this.monster_lifetime) -- 2.39.2