]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Revert that last change, as it cannot check for ammo any longer.
authorMircea Kitsune <sonichedgehog_hyperblast00@yahoo.com>
Mon, 11 Apr 2011 22:21:53 +0000 (01:21 +0300)
committerMircea Kitsune <sonichedgehog_hyperblast00@yahoo.com>
Mon, 11 Apr 2011 22:21:53 +0000 (01:21 +0300)
qcsrc/server/w_hagar.qc

index 2aeba812d201ef7c3bca19dc5d758aa5de316894..ac804e1dfff48afb3e83e27abe2e0be64cc9cac2 100644 (file)
@@ -141,14 +141,8 @@ void W_Hagar_Attack2_Load (void)
                // we can attempt to load another rocket
                if(self.hagar_loadtime < time)
                {
-                       // if there's no loading speed, fill in the rockets
-                       if(autocvar_g_balance_hagar_secondary_load_speed)
-                       {
-                               self.hagar_load += 1;
-                               sound(self, CHAN_WEAPON2, "weapons/hagar_load.wav", VOL_BASE, ATTN_NORM);
-                       }
-                       else
-                               self.hagar_load = autocvar_g_balance_hagar_secondary_load_max;
+                       self.hagar_load += 1;
+                       sound(self, CHAN_WEAPON2, "weapons/hagar_load.wav", VOL_BASE, ATTN_NORM);
 
                        self.hagar_loadtime = time + autocvar_g_balance_hagar_secondary_load_speed;
                }