]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Buff bullet impulses a wee bit (#14858)
authorKara <lunarautomaton6@gmail.com>
Sun, 26 Mar 2023 01:55:24 +0000 (18:55 -0700)
committerGitHub <noreply@github.com>
Sun, 26 Mar 2023 01:55:24 +0000 (20:55 -0500)
Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs

index 4a0a5ec69a7d9b0525c72e7973659e0ab065cd37..1b0a1221eee49722be9091fa383fed69b1d951c8 100644 (file)
@@ -402,7 +402,7 @@ public abstract partial class SharedGunSystem : EntitySystem
         var toMap = toCoordinates.ToMapPos(EntityManager, Transform);
         var shotDirection = (toMap - fromMap).Normalized;
 
-        const float impulseStrength = 5.0f;
+        const float impulseStrength = 25.0f;
         var impulseVector =  shotDirection * impulseStrength;
         Physics.ApplyLinearImpulse(user, -impulseVector, body: userPhysics);
     }