Changed 2 functions for consistency with the rest of the plugin, and general coding format

This commit is contained in:
Greyscale 2009-04-15 03:36:19 +02:00
parent 3f74f5abb2
commit acf5dd4ecd
1 changed files with 4 additions and 8 deletions

View File

@ -244,10 +244,8 @@ bool:IsClientPlayer(client)
{
return true;
}
else
{
return false;
}
return false;
}
/**
@ -262,8 +260,6 @@ bool:IsClientAdmin(client)
{
return true;
}
else
{
return false;
}
return false;
}