Some small formatting changes, and some stray @ symbols cleaned up

This commit is contained in:
Vatiken 2012-03-24 14:41:24 +00:00
parent 6a342723ed
commit 5c317f6863
10 changed files with 17 additions and 22 deletions

View file

@ -32,7 +32,7 @@ ACMD(do_say)
char buf[MAX_INPUT_LENGTH + 14], *msg;
struct char_data *vict;
snprintf(buf, sizeof(buf), "$n\tn says, '%s\tn'", argument);
snprintf(buf, sizeof(buf), "$n\tn says, '%s'", argument);
msg = act(buf, FALSE, ch, 0, 0, TO_ROOM | DG_NO_TRIG);
for (vict = world[IN_ROOM(ch)].people; vict; vict = vict->next_in_room)
@ -42,7 +42,7 @@ ACMD(do_say)
if (!IS_NPC(ch) && PRF_FLAGGED(ch, PRF_NOREPEAT))
send_to_char(ch, "%s", CONFIG_OK);
else {
sprintf(buf, "You say, '%s\tn'", argument);
sprintf(buf, "You say, '%s'", argument);
msg = act(buf, FALSE, ch, 0, 0, TO_CHAR | DG_NO_TRIG);
add_history(ch, msg, HIST_SAY);
}