mirror of
https://github.com/JonnyBro/beatrun.git
synced 2024-12-28 12:53:02 +05:00
disable slow mo on finish
This commit is contained in:
parent
2516588353
commit
98435b18eb
1 changed files with 2 additions and 2 deletions
|
@ -164,7 +164,7 @@ local finishcolor = Color(45, 45, 175, 100)
|
||||||
|
|
||||||
function FinishCourse(ply)
|
function FinishCourse(ply)
|
||||||
ply:ScreenFade(SCREENFADE.IN, finishcolor, 0, 4)
|
ply:ScreenFade(SCREENFADE.IN, finishcolor, 0, 4)
|
||||||
ply:SetLaggedMovementValue(0.1)
|
-- ply:SetLaggedMovementValue(0.1)
|
||||||
ply:DrawViewModel(false)
|
ply:DrawViewModel(false)
|
||||||
|
|
||||||
net.Start("Checkpoint_Finish")
|
net.Start("Checkpoint_Finish")
|
||||||
|
@ -173,7 +173,7 @@ function FinishCourse(ply)
|
||||||
ply:SetNW2Int("CPNum", -1)
|
ply:SetNW2Int("CPNum", -1)
|
||||||
|
|
||||||
timer.Simple(4, function()
|
timer.Simple(4, function()
|
||||||
ply:SetLaggedMovementValue(1)
|
-- ply:SetLaggedMovementValue(1)
|
||||||
ply:DrawViewModel(true)
|
ply:DrawViewModel(true)
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue