Reverted. Still can't see OLC in wiznet, have to do some digging to fix this. --Rumble

This commit is contained in:
Rumble 2013-04-08 00:07:23 +00:00
parent d27f03899f
commit 727bb9213c

View file

@ -2220,8 +2220,12 @@ ACMD(do_wiznet)
if (IS_PLAYING(d) && (GET_LEVEL(d->character) >= level) &&
(!PRF_FLAGGED(d->character, PRF_NOWIZ))
&& (d != ch->desc || !(PRF_FLAGGED(d->character, PRF_NOREPEAT)))) {
if (CAN_SEE(d->character, ch))
msg = act(buf1, FALSE, d->character, 0, 0, TO_CHAR | DG_NO_TRIG);
add_history(d->character, msg, HIST_WIZNET);
else
msg = act(buf2, FALSE, d->character, 0, 0, TO_CHAR | DG_NO_TRIG);
add_history(d->character, msg, HIST_WIZNET);
}
}