From cca1e646c278afa53983afac9b58c03d0995b3c8 Mon Sep 17 00:00:00 2001 From: Marco Hladik Date: Sun, 3 May 2020 23:50:11 +0200 Subject: [PATCH] Counter-Strike: Changed WEAPON_USP45 firing rate to be closer to 1.5's. It was based on the values of CS:S before (as those are not hard-coded...) --- src/shared/cstrike/w_usp45.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/cstrike/w_usp45.c b/src/shared/cstrike/w_usp45.c index 0c36da42..cbb11ba5 100644 --- a/src/shared/cstrike/w_usp45.c +++ b/src/shared/cstrike/w_usp45.c @@ -218,7 +218,7 @@ w_usp45_primary(void) } pl.flags |= FL_SEMI_TOGGLED; - pl.w_attack_next = 0.0875f; + pl.w_attack_next = 0.15f; pl.w_idle_next = pl.w_attack_next; }