From e82964bbf44ce2e6b10c585090eec2dd0cd27237 Mon Sep 17 00:00:00 2001 From: Kara Date: Tue, 30 Jan 2024 22:00:40 -0700 Subject: [PATCH] Reduce throwing recoil further (#24759) --- Content.Shared/Throwing/ThrowingSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Throwing/ThrowingSystem.cs b/Content.Shared/Throwing/ThrowingSystem.cs index 5fe02a0571..5429431831 100644 --- a/Content.Shared/Throwing/ThrowingSystem.cs +++ b/Content.Shared/Throwing/ThrowingSystem.cs @@ -166,7 +166,7 @@ public sealed class ThrowingSystem : EntitySystem if (user == null) return; - _recoil.KickCamera(user.Value, -direction * 0.3f); + _recoil.KickCamera(user.Value, -direction * 0.04f); // Give thrower an impulse in the other direction if (pushbackRatio != 0.0f &&