From 6c52115927a87bc0c18c6d4192fbd0ea5a076ee5 Mon Sep 17 00:00:00 2001 From: Mircea Kitsune Date: Mon, 11 Apr 2011 13:56:02 +0300 Subject: [PATCH] Fix loadable secondary lifetime --- qcsrc/server/w_hagar.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/server/w_hagar.qc b/qcsrc/server/w_hagar.qc index 4643fa680..760e6cf35 100644 --- a/qcsrc/server/w_hagar.qc +++ b/qcsrc/server/w_hagar.qc @@ -170,7 +170,7 @@ void W_Hagar_Attack2_Load (void) missile.touch = W_Hagar_Touch; missile.use = W_Hagar_Explode; missile.think = adaptor_think2use_hittype_splash; - //missile.nextthink = time + autocvar_g_balance_hagar_secondary_lifetime; + missile.nextthink = time + autocvar_g_balance_hagar_secondary_lifetime_min + random() * autocvar_g_balance_hagar_secondary_lifetime_rand; PROJECTILE_MAKETRIGGER(missile); missile.projectiledeathtype = WEP_HAGAR; setorigin (missile, w_shotorg); -- 2.39.2