mirror of
https://github.com/JonnyBro/beatrun.git
synced 2025-04-03 17:37:08 +05:00
fixes
- fix the climb trace overextending - fix grapple acceleration in singleplayer
This commit is contained in:
parent
80fa0c531b
commit
e54b7f3659
4 changed files with 6 additions and 4 deletions
|
@ -621,7 +621,7 @@ local function ClimbingCheck(ply, mv, cmd)
|
|||
mv:SetOrigin(startpos)
|
||||
end
|
||||
|
||||
tr.start = startpos - wallang:Forward() * 0.533
|
||||
tr.start = mv:GetOrigin() + wallang:Forward() * 20 + vector_up * tr.maxs.z + vector_up
|
||||
tr.endpos = tr.start
|
||||
|
||||
util.TraceHull(tr)
|
||||
|
@ -652,7 +652,7 @@ local function ClimbingCheck(ply, mv, cmd)
|
|||
|
||||
ply:SetClimbing(climbvalue)
|
||||
ply:SetClimbingStart(startpos)
|
||||
ply:SetClimbingEnd(endpos)
|
||||
ply:SetClimbingEnd(tr.endpos)
|
||||
ply:SetClimbingTime(0)
|
||||
ply:SetClimbingDelay(CurTime() + 0.75)
|
||||
|
||||
|
|
|
@ -65,6 +65,8 @@ hook.Add("SetupMove", "Grapple", function(ply, mv, cmd)
|
|||
if not ply:Alive() or Course_Name ~= "" and ply:GetNW2Int("CPNum", 1) ~= -1 and not ply:GetNW2Entity("Swingrope"):IsValid() then return end
|
||||
if GetGlobalBool("GM_INFECTION") or GetGlobalBool("GM_DATATHEFT") or GetGlobalBool("GM_DEATHMATCH") and not ply:GetNW2Entity("Swingrope"):IsValid() then return end
|
||||
|
||||
if FrameTime() <= 0 then return end
|
||||
|
||||
local usingrh = ply:UsingRH()
|
||||
|
||||
if not ply.Grapple_tr then
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
VERSION_GLOBAL = "1.0.32"
|
||||
VERSION_GLOBAL = "1.0.33"
|
||||
VERSION_LATEST = ""
|
||||
VERSION_CHECKED = false
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
1.0.32
|
||||
1.0.33
|
Loading…
Add table
Reference in a new issue