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

View File

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