mirror of
https://github.com/JonnyBro/beatrun.git
synced 2025-04-04 09:56:33 +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)
|
mv:SetOrigin(startpos)
|
||||||
end
|
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
|
tr.endpos = tr.start
|
||||||
|
|
||||||
util.TraceHull(tr)
|
util.TraceHull(tr)
|
||||||
|
@ -652,7 +652,7 @@ local function ClimbingCheck(ply, mv, cmd)
|
||||||
|
|
||||||
ply:SetClimbing(climbvalue)
|
ply:SetClimbing(climbvalue)
|
||||||
ply:SetClimbingStart(startpos)
|
ply:SetClimbingStart(startpos)
|
||||||
ply:SetClimbingEnd(endpos)
|
ply:SetClimbingEnd(tr.endpos)
|
||||||
ply:SetClimbingTime(0)
|
ply:SetClimbingTime(0)
|
||||||
ply:SetClimbingDelay(CurTime() + 0.75)
|
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 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 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()
|
local usingrh = ply:UsingRH()
|
||||||
|
|
||||||
if not ply.Grapple_tr then
|
if not ply.Grapple_tr then
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
VERSION_GLOBAL = "1.0.32"
|
VERSION_GLOBAL = "1.0.33"
|
||||||
VERSION_LATEST = ""
|
VERSION_LATEST = ""
|
||||||
VERSION_CHECKED = false
|
VERSION_CHECKED = false
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
1.0.32
|
1.0.33
|
Loading…
Add table
Reference in a new issue