mirror of
https://github.com/JonnyBro/beatrun.git
synced 2025-04-04 09:56:33 +05:00
Bug fix and a tweak to wallrunning
This commit is contained in:
parent
7b6c0a0b6c
commit
3b15ba1f44
1 changed files with 3 additions and 1 deletions
|
@ -1544,11 +1544,13 @@ local function JumpThink()
|
|||
-- auto hand switching code
|
||||
local ply = LocalPlayer()
|
||||
if AutoHandSw:GetInt() == 1 and ply:Alive() then
|
||||
if (ply:GetWallrun() > 0 or ply:GetMantle() > 0 or IsValid(ply:GetZipline()) or requires_arms[BodyAnimString]) and not using_hands then
|
||||
if (ply:GetWallrun() == 1 or ply:GetMantle() > 0 or IsValid(ply:GetZipline()) or requires_arms[BodyAnimString]) and not using_hands then
|
||||
weapon_before_hands = (ply:GetActiveWeapon())
|
||||
input.SelectWeapon(ply:GetWeapon("runnerhands"))
|
||||
using_hands = true
|
||||
if ply:GetWallrun() == 1 then -- 1 = verticaL
|
||||
BodyLimitX = 25 -- fixes a bug where if u look behind u will vault over air
|
||||
BodyLimitY = 70
|
||||
BodyAnim:SetSequence("wallrunverticalstart")
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue