From 9a2d895b2bc2a8e608fb1e222c2cbe8b31ac64fe Mon Sep 17 00:00:00 2001
From: Rudolf Polzer <divverent@alientrap.org>
Date: Sun, 26 Dec 2010 20:16:35 +0100
Subject: [PATCH] fix bug that hook doesn't update directly after firing but
 stay stuck for a little while

---
 qcsrc/server/g_hook.qc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/qcsrc/server/g_hook.qc b/qcsrc/server/g_hook.qc
index ef379b9bc..dcc13c4df 100644
--- a/qcsrc/server/g_hook.qc
+++ b/qcsrc/server/g_hook.qc
@@ -370,7 +370,7 @@ void FireGrapplingHook (void)
 	//missile.glow_size = 120;
 	missile.touch = GrapplingHookTouch;
 	missile.think = GrapplingHookThink;
-	missile.nextthink = time + 0.1;
+	missile.nextthink = time;
 
 	missile.effects = /*EF_FULLBRIGHT | EF_ADDITIVE |*/ EF_LOWPRECISION;
 
-- 
2.39.5