Fixed another typo, added a check for !NPC do_gen_comm, and changed do_return to only run autowiz if level changes. --Rumble

This commit is contained in:
Rumble
2008-05-10 19:16:35 +00:00
parent 63c6808612
commit a7ffa85498
3 changed files with 6 additions and 3 deletions

View File

@@ -456,7 +456,7 @@ ACMD(do_gen_comm)
return;
}
/* Make sure the char is on the channel. */
if (PRF_FLAGGED(ch, channels[subcmd])) {
if (!IS_NPC(ch) && PRF_FLAGGED(ch, channels[subcmd])) {
send_to_char(ch, "%s", com_msgs[subcmd][2]);
return;
}