Fix FOV...hopefully finally

This commit is contained in:
LostTrackpad 2024-06-23 22:38:50 +07:00
parent 5ef56f4d70
commit 6e24708ecd

View file

@ -568,7 +568,9 @@ hook.Add("PlayerSwitchWeapon", "BeatrunSwitchARC9FOVFix", function(ply)
end)
end)
cvars.AddChangeCallback("Beatrun_FOV", function(convar, oldval, newval)
hook.Add("InitPostEntity", "FOVChangeFix", function()
-- FOV change fix, don't tinker with this unless you know what you're doing...
cvars.AddChangeCallback("Beatrun_FOV", function(convar, oldval, newval)
if CLIENT and game.SinglePlayer() then
LocalPlayer():SetFOV(newval)
elseif CLIENT then
@ -585,6 +587,7 @@ cvars.AddChangeCallback("Beatrun_FOV", function(convar, oldval, newval)
end
end)
end
end)
end)
if SERVER then