Skip to content

Commit

Permalink
Update net_combat.lua
Browse files Browse the repository at this point in the history
the help texts should've been one arg later
  • Loading branch information
pingu7867 committed Sep 21, 2024
1 parent e9fb223 commit 7644e4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/pac3/extra/shared/net_combat.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2782,12 +2782,12 @@ if CLIENT then
concommand.Add( "pac_stop_lock", function()
net.Start("pac_signal_stop_lock")
net.SendToServer()
end, "asks the server to breakup any lockpart hold on your player")
end, nil, "asks the server to breakup any lockpart hold on your player")

concommand.Add( "pac_break_lock", function()
net.Start("pac_signal_stop_lock")
net.SendToServer()
end, "asks the server to breakup any lockpart hold on your player")
end, nil, "asks the server to breakup any lockpart hold on your player")

net.Receive("pac_lock_imposecalcview", function()
local authority_to_calcview = net.ReadBool() and GetConVar("pac_client_lock_camera_consent"):GetBool()
Expand Down

0 comments on commit 7644e4f

Please sign in to comment.