mirror of
https://github.com/JonnyBro/beatrun.git
synced 2025-04-06 10:56:34 +05:00
Fix FOV...hopefully finally
This commit is contained in:
parent
5ef56f4d70
commit
6e24708ecd
1 changed files with 18 additions and 15 deletions
|
@ -568,6 +568,8 @@ hook.Add("PlayerSwitchWeapon", "BeatrunSwitchARC9FOVFix", function(ply)
|
|||
end)
|
||||
end)
|
||||
|
||||
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)
|
||||
|
@ -586,6 +588,7 @@ cvars.AddChangeCallback("Beatrun_FOV", function(convar, oldval, newval)
|
|||
end)
|
||||
end
|
||||
end)
|
||||
end)
|
||||
|
||||
if SERVER then
|
||||
net.Receive("Beatrun_ClientFOVChange", function(len, ply)
|
||||
|
|
Loading…
Add table
Reference in a new issue