mirror of
https://github.com/JonnyBro/beatrun.git
synced 2024-12-28 12:53:02 +05:00
fix server error (again) (stupid)
This commit is contained in:
parent
5874381120
commit
592a146230
1 changed files with 2 additions and 5 deletions
|
@ -4,10 +4,7 @@ end
|
|||
|
||||
local landang = Angle(0, 0, 0)
|
||||
local lastGroundSpeed = 0
|
||||
|
||||
if CLIENT then
|
||||
CreateConVar("Beatrun_RollSpeedLoss", 1, {FCVAR_REPLICATED, FCVAR_ARCHIVE}, "", 0, 1)
|
||||
end
|
||||
local rollspeedloss = CreateConVar("Beatrun_RollSpeedLoss", 1, {FCVAR_REPLICATED, FCVAR_ARCHIVE}, "", 0, 1)
|
||||
|
||||
local function SafetyRollThink(ply, mv, cmd)
|
||||
local speed = mv:GetVelocity().z
|
||||
|
@ -44,7 +41,7 @@ local function SafetyRollThink(ply, mv, cmd)
|
|||
vel.x = 0
|
||||
vel.y = 0
|
||||
|
||||
local speedloss = GetConVar("Beatrun_RollSpeedLoss"):GetBool()
|
||||
local speedloss = rollspeedloss:GetBool()
|
||||
local speedLimit = GetConVar("Beatrun_SpeedLimit"):GetInt()
|
||||
|
||||
if speedloss then
|
||||
|
|
Loading…
Reference in a new issue