mirror of
https://github.com/JonnyBro/beatrun.git
synced 2025-04-05 18:36:33 +05:00
Fix NASA speed acceleration with weapons
This commit is contained in:
parent
2bbba952a8
commit
7848842d43
1 changed files with 2 additions and 2 deletions
|
@ -257,8 +257,8 @@ hook.Add("SetupMove", "MESetupMove", function(ply, mv, cmd)
|
|||
local weaponspeed = 150
|
||||
local activewep = ply:GetActiveWeapon()
|
||||
|
||||
if ply:notUsingRH() then
|
||||
weaponspeed = speed_limit:GetInt()
|
||||
if ply:notUsingRH() then -- Fix the NASA move stuff
|
||||
weaponspeed = speed_limit:GetInt() * 0.461538
|
||||
end
|
||||
|
||||
if (ismoving or ply:GetMantle() ~= 0) and ply:GetMESprintDelay() < CurTime() and (cmd:KeyDown(IN_SPEED) or ply:GetMantle() ~= 0 or not ply:OnGround() or (not ply:OnGround() or ply:GetMantle() ~= 0) and mv:GetVelocity().z > -450) then
|
||||
|
|
Loading…
Add table
Reference in a new issue