[7548] Fixed some commands by replacing !args with !*args check

This commit is contained in:
arrai 2009-03-26 20:46:12 +01:00
parent 18ec7c8011
commit bfe25d510b
3 changed files with 11 additions and 11 deletions

View file

@ -2072,7 +2072,7 @@ bool ChatHandler::HandleModifyMorphCommand(const char* args)
//kick player
bool ChatHandler::HandleKickPlayerCommand(const char *args)
{
if (!args)
if (!*args)
{
Player* player = getSelectedPlayer();