- fix the climb trace overextending
- fix grapple acceleration in singleplayer
This commit is contained in:
relaxtakenotes 2025-02-12 16:34:27 +05:00
parent 80fa0c531b
commit e54b7f3659
4 changed files with 6 additions and 4 deletions

View file

@ -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)

View file

@ -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

View file

@ -1,4 +1,4 @@
VERSION_GLOBAL = "1.0.32"
VERSION_GLOBAL = "1.0.33"
VERSION_LATEST = ""
VERSION_CHECKED = false

View file

@ -1 +1 @@
1.0.32
1.0.33