From aa73236554c5a81d8f45876c5e67a507b327c4bc Mon Sep 17 00:00:00 2001 From: Lam Hung Date: Fri, 3 Nov 2023 21:24:30 +0700 Subject: [PATCH] ARC9 FOV fix (sort of) --- .../gamemodes/beatrun/gamemode/player_class/player_beatrun.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/beatrun/gamemodes/beatrun/gamemode/player_class/player_beatrun.lua b/beatrun/gamemodes/beatrun/gamemode/player_class/player_beatrun.lua index d29f6b4..ba739a3 100644 --- a/beatrun/gamemodes/beatrun/gamemode/player_class/player_beatrun.lua +++ b/beatrun/gamemodes/beatrun/gamemode/player_class/player_beatrun.lua @@ -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()