Counter-Strike: Tweak the punchangle/recoil to feel closer to 1.5. It was

a bit too low before I feel.
This commit is contained in:
Marco Cawthorne 2020-04-25 22:29:35 +02:00
parent ece32f1c51
commit 321256c009

View file

@ -36,7 +36,7 @@ Cstrike_ShotMultiplierAdd(player pl, int shots)
pl.cs_shotmultiplier = bound(0, pl.cs_shotmultiplier + shots, 12);
pl.cs_shottime = 0.2f;
pl.punchangle[0] = -2 * (pl.cs_shotmultiplier / 6);
pl.punchangle[0] = -4 * (pl.cs_shotmultiplier / 6);
pl.punchangle[1] = random(-1, 1);
}