Standardized pronoun usage for some commands.

This commit is contained in:
wyld-sw
2015-06-19 14:25:08 -04:00
parent 3b64000d9f
commit 258faf2fa4
7 changed files with 17 additions and 16 deletions

View File

@@ -895,6 +895,7 @@ ACMD(do_oasis_prefedit)
struct descriptor_data *d;
struct char_data *vict;
char *buf3;
char buf[MAX_STRING_LENGTH];
char buf1[MAX_STRING_LENGTH];
char buf2[MAX_STRING_LENGTH];
@@ -939,7 +940,8 @@ ACMD(do_oasis_prefedit)
if (ch == vict)
send_to_char(ch, "Your preferences are currently being edited by %s.\r\n", PERS(d->character, ch));
else
send_to_char(ch, "Their preferences are currently being edited by %s.\r\n", PERS(d->character, ch));
sprintf(buf, "$S$u preferences are currently being edited by %s.", PERS(d->character, ch));
act(buf, FALSE, ch, 0, vict, TO_CHAR);
return;
}
}