mirror of
https://github.com/CFC-Servers/cfc_ulx_commands.git
synced 2025-03-04 03:13:28 -05:00
Fix missing convar check
This commit is contained in:
parent
2dade3bbd0
commit
05c79183f6
@ -88,7 +88,8 @@ if CLIENT then
|
||||
net.Start( networkString )
|
||||
|
||||
for _, convar in pairs( CONVARS_TO_CHECK ) do
|
||||
net.WriteBool( GetConVar( convar ):GetBool() )
|
||||
local cvar = GetConVar( convar )
|
||||
net.WriteBool( cvar and cvar:GetBool() or false )
|
||||
end
|
||||
|
||||
net.SendToServer()
|
||||
|
Loading…
Reference in New Issue
Block a user