ARC9 FOV fix (sort of)

This commit is contained in:
Lam Hung 2023-11-03 21:24:30 +07:00
parent ce432cb4cc
commit aa73236554

View file

@ -143,6 +143,9 @@ hook.Add("PlayerSwitchWeapon", "ResetFOV", function(ply)
local fovmult = (ply:InOverdrive() and 1.1) or 1
ply:SetFOV(ply:GetInfoNum("Beatrun_FOV", 120) * fovmult)
-- Hacky way to fix FOV after switching away from/to ARC9 SWEPs
timer.Simple(0, function() ply:SetFOV(ply:GetInfoNum("Beatrun_FOV", 120) * fovmult) end)
end)
function PLAYER:SetModel()