mirror of
https://github.com/JonnyBro/beatrun.git
synced 2025-04-05 18:36:33 +05:00
ARC9 FOV fix (sort of)
This commit is contained in:
parent
ce432cb4cc
commit
aa73236554
1 changed files with 3 additions and 0 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Reference in a new issue