From e55a8e5a596fc8d058d4daf1936911c194ee2ceb Mon Sep 17 00:00:00 2001 From: Lam Hung Date: Fri, 3 Nov 2023 22:04:22 +0700 Subject: [PATCH] Revert "ARC9 FOV fix (sort of)" This reverts commit aa73236554c5a81d8f45876c5e67a507b327c4bc. --- .../gamemodes/beatrun/gamemode/player_class/player_beatrun.lua | 3 --- 1 file changed, 3 deletions(-) diff --git a/beatrun/gamemodes/beatrun/gamemode/player_class/player_beatrun.lua b/beatrun/gamemodes/beatrun/gamemode/player_class/player_beatrun.lua index ba739a3..d29f6b4 100644 --- a/beatrun/gamemodes/beatrun/gamemode/player_class/player_beatrun.lua +++ b/beatrun/gamemodes/beatrun/gamemode/player_class/player_beatrun.lua @@ -143,9 +143,6 @@ 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()