mirror of
https://github.com/JonnyBro/beatrun.git
synced 2025-04-06 10:56:34 +05:00
github what
This commit is contained in:
parent
aa73236554
commit
73ffa4c384
1 changed files with 5 additions and 1 deletions
|
@ -145,7 +145,7 @@ hook.Add("PlayerSwitchWeapon", "ResetFOV", function(ply)
|
||||||
ply:SetFOV(ply:GetInfoNum("Beatrun_FOV", 120) * fovmult)
|
ply:SetFOV(ply:GetInfoNum("Beatrun_FOV", 120) * fovmult)
|
||||||
|
|
||||||
-- Hacky way to fix FOV after switching away from/to ARC9 SWEPs
|
-- 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)
|
timer.Simple(0.01, function() ply:SetFOV(ply:GetInfoNum("Beatrun_FOV", 120) * fovmult) end)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
function PLAYER:SetModel()
|
function PLAYER:SetModel()
|
||||||
|
@ -514,4 +514,8 @@ hook.Add("PlayerSpawn", "ResetStateTransition", function(ply, transition)
|
||||||
end)
|
end)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
function GM:FinishMove
|
||||||
|
if ply:GetActiveWeapon().ARC9 and mv:KeyReleased(IN_ATTACK2) then ply:SetFOV(ply:GetInfoNum("Beatrun_FOV", 120) * fovmult) end
|
||||||
|
end
|
||||||
|
|
||||||
player_manager.RegisterClass("player_beatrun", PLAYER, "player_default")
|
player_manager.RegisterClass("player_beatrun", PLAYER, "player_default")
|
Loading…
Add table
Reference in a new issue