From 0d59d285d1d1277d725f9089c2dd4290e956c2f6 Mon Sep 17 00:00:00 2001 From: icedream Date: Mon, 20 Oct 2014 11:30:22 +0200 Subject: [PATCH] This line confused me a bit. --- lua/weapons/disguiser/cl_3rdperson.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/weapons/disguiser/cl_3rdperson.lua b/lua/weapons/disguiser/cl_3rdperson.lua index 2d75d89..3cef679 100644 --- a/lua/weapons/disguiser/cl_3rdperson.lua +++ b/lua/weapons/disguiser/cl_3rdperson.lua @@ -86,7 +86,7 @@ hook.Add("CalcView", "Disguiser.ThirdPersonCalcView", function(ply, pos, angles, end // Smoothing FOV change - fov = targetfov + fov = targetfov -- comment or remove this to enable smoothing fov = math.Approach(fov, targetfov, math.abs(targetfov - fov) * smoothscale) return GAMEMODE:CalcView(ply, pos, angles, fov)