- Removed the extra space when you have no title (thanks Rhade).

- Added "Top of File" to the do_file command (thanks Rhade).
- Removed socials from wizhelp.
- Changed zlist with no arg to list zones.
- Wiznet can now be seen while in OLC, again (thanks Fizban).
- Updated socials, help, changelog, world, and news.
  --Rumble
This commit is contained in:
Rumble 2007-02-24 21:27:57 +00:00
parent 916281ecb0
commit 787c392e0a
11 changed files with 1637 additions and 1596 deletions

View file

@ -2221,12 +2221,12 @@ ACMD(do_wiznet)
}
for (d = descriptor_list; d; d = d->next) {
if ((STATE(d) == CON_PLAYING) && (GET_LEVEL(d->character) >= level) &&
if (IS_PLAYING(d) && (GET_LEVEL(d->character) >= level) &&
(!PRF_FLAGGED(d->character, PRF_NOWIZ))
&& (d != ch->desc || !(PRF_FLAGGED(d->character, PRF_NOREPEAT)))) {
send_to_char(d->character, "%s", CCCYN(d->character, C_NRM));
send_to_char(d->character, "%s", buf1);
new_hist_messg(d, buf1);
send_to_char(d->character, "%s", buf1);
new_hist_messg(d, buf1);
send_to_char(d->character, "%s", CCNRM(d->character, C_NRM));
}
}