From 1c5ee68d631522620a290573a7113a7b185cec81 Mon Sep 17 00:00:00 2001 From: drjaska Date: Tue, 16 May 2023 11:31:37 +0300 Subject: [PATCH] change spread pattern magic number a bit --- qcsrc/common/weapons/weapon/hagar.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/common/weapons/weapon/hagar.qc b/qcsrc/common/weapons/weapon/hagar.qc index a8c12efcc..725243ee4 100644 --- a/qcsrc/common/weapons/weapon/hagar.qc +++ b/qcsrc/common/weapons/weapon/hagar.qc @@ -229,7 +229,7 @@ void W_Hagar_Attack2_Load_Release(Weapon thiswep, entity actor, .entity weaponen s = '0 0 0'; else { - makevectors('0 360 0' * (0.75 + (counter - 0.5) / (shots - 1))); + makevectors('0 360 0' * ((0.25 * ((shots + 1) % 2)) + (counter / (shots - 1)))); s.y = v_forward.x; s.z = v_forward.y; } -- 2.39.2