diff --git a/lua/weapons/cfc_graviton_gun/shared.lua b/lua/weapons/cfc_graviton_gun/shared.lua index b18fa9e..d53e7e5 100644 --- a/lua/weapons/cfc_graviton_gun/shared.lua +++ b/lua/weapons/cfc_graviton_gun/shared.lua @@ -127,9 +127,9 @@ SWEP.Primary = { GravitonAccelerationMult = 0.75, -- Take a portion of the victim's initial horizontal velocity and apply it as a downwards acceleration on top of normal gravity. GravitonAccelerationAdd = 300, -- Flat bonus acceleration to apply downwards. GravitonFallDamageDiv = 1900, -- Divides fall speed before going into the ease func. - GravitonFallDamageEase = math.ease.InQuint, -- Easing function to apply to fall damage. + GravitonFallDamageEase = math.ease.InQuart, -- Easing function to apply to fall damage. GravitonFallDamageMult = 80, -- Multiplies fall damage after ease func. - GravitonFallDamageSpeedThreshdold = 1400, -- Speed at which fall damage starts to be applied. + GravitonFallDamageSpeedThreshdold = 1200, -- Speed at which fall damage starts to be applied. GravitonTrailInterval = 0.1, GravitonTrailLength = 2, GravitonTrailSpeed = 1,