Added admin levels to who list, and minor bug fixes

This commit is contained in:
JamDog 2010-11-25 20:34:26 +00:00
parent 5acbfd29eb
commit a95ac76ef7
5 changed files with 16 additions and 6 deletions

View file

@ -1725,6 +1725,11 @@ ACMD(do_cmdinfo)
one_argument(argument, arg);
if (!*arg) {
send_to_char(ch, "Usage: %scmdinfo <command>%s", QYEL, QNRM);
return;
}
for (length = strlen(arg), c = 0; *complete_cmd_info[c].command != '\n'; c++) {
if(!strncmp(complete_cmd_info[c].command, arg, length))
break;