Added support for overriding class nvgs. Changed nvgs CVAR to a integer.

This commit is contained in:
richard
2008-10-07 19:05:33 +02:00
parent e615802bb9
commit 180f6923fa
4 changed files with 33 additions and 8 deletions

View File

@ -176,3 +176,15 @@ bool:IsPlayerInList(client)
return false;
}
bool:IntToBool(intval)
{
if (intval == 0)
{
return false;
}
else
{
return true;
}
}