[committed] Fix for who command
PostPosted: Fri May 07, 2010 8:52 pm
Yay, my first code contribution! I noticed that typing the command /who help in-game doesn't actually display syntax help on the /who command. So in who.cs, I added the following code, after the case "all" and before the case "staff" section of the switch:
- Code: Select all
case "help": // list syntax for the who command
{
DisplaySyntax(client);
return;
}