diff --git a/beatrun/Beatrun Reanimated/climbanim.dx80.vtx b/beatrun/Beatrun Reanimated/climbanim.dx80.vtx index 2dedcc3..fb3096a 100644 Binary files a/beatrun/Beatrun Reanimated/climbanim.dx80.vtx and b/beatrun/Beatrun Reanimated/climbanim.dx80.vtx differ diff --git a/beatrun/Beatrun Reanimated/climbanim.dx90.vtx b/beatrun/Beatrun Reanimated/climbanim.dx90.vtx index 9051414..3b7269c 100644 Binary files a/beatrun/Beatrun Reanimated/climbanim.dx90.vtx and b/beatrun/Beatrun Reanimated/climbanim.dx90.vtx differ diff --git a/beatrun/Beatrun Reanimated/climbanim.mdl b/beatrun/Beatrun Reanimated/climbanim.mdl index 623866b..b34e184 100644 Binary files a/beatrun/Beatrun Reanimated/climbanim.mdl and b/beatrun/Beatrun Reanimated/climbanim.mdl differ diff --git a/beatrun/Beatrun Reanimated/climbanim.sw.vtx b/beatrun/Beatrun Reanimated/climbanim.sw.vtx index c51ab7d..b367a10 100644 Binary files a/beatrun/Beatrun Reanimated/climbanim.sw.vtx and b/beatrun/Beatrun Reanimated/climbanim.sw.vtx differ diff --git a/beatrun/Beatrun Reanimated/climbanim.vvd b/beatrun/Beatrun Reanimated/climbanim.vvd index 43d3a30..fb59ca8 100644 Binary files a/beatrun/Beatrun Reanimated/climbanim.vvd and b/beatrun/Beatrun Reanimated/climbanim.vvd differ diff --git a/beatrun/gamemodes/beatrun/gamemode/cl/ToolMenuSettings.lua b/beatrun/gamemodes/beatrun/gamemode/cl/ToolMenuSettings.lua index 6122d63..a59c57c 100644 --- a/beatrun/gamemodes/beatrun/gamemode/cl/ToolMenuSettings.lua +++ b/beatrun/gamemodes/beatrun/gamemode/cl/ToolMenuSettings.lua @@ -169,7 +169,7 @@ hook.Add("PopulateToolMenu", "Beatrun_ToolMenu", function() panel:ControlHelp("Forces Purist Mode for all players") panel:CheckBox("\"Realistic\" wallrunning", "Beatrun_PuristWallrun") - panel:ControlHelp("NOTE:\nYou wallrun a bit further") + panel:ControlHelp("You don't lose speed when starting wallrunning when disabled") local divider = vgui.Create("DHorizontalDivider") panel:AddItem(divider) diff --git a/beatrun/gamemodes/beatrun/gamemode/sh/Wallrun.lua b/beatrun/gamemodes/beatrun/gamemode/sh/Wallrun.lua index 1bdda70..58dec61 100644 --- a/beatrun/gamemodes/beatrun/gamemode/sh/Wallrun.lua +++ b/beatrun/gamemodes/beatrun/gamemode/sh/Wallrun.lua @@ -443,7 +443,7 @@ local function WallrunningCheck(ply, mv, cmd) end end - if mv:KeyDown(IN_JUMP) and not ply:OnGround() or mv:KeyPressed(IN_JUMP) then + if not ply:OnGround() or mv:KeyPressed(IN_JUMP) then local tr = ply.WallrunTrace local trout = ply.WallrunTraceOut @@ -484,7 +484,7 @@ local function WallrunningCheck(ply, mv, cmd) end end - if mv:KeyDown(IN_JUMP) and not ply:OnGround() or mv:KeyPressed(IN_JUMP) then + if not ply:OnGround() or mv:KeyPressed(IN_JUMP) then local tr = ply.WallrunTrace local trout = ply.WallrunTraceOut