Added support for overriding class nvgs. Changed nvgs CVAR to a integer.
This commit is contained in:
@ -176,3 +176,15 @@ bool:IsPlayerInList(client)
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
bool:IntToBool(intval)
|
||||
{
|
||||
if (intval == 0)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
else
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user