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

@@ -75,7 +75,7 @@ ACMD(do_hit)
if (!*arg)
send_to_char(ch, "Hit who?\r\n");
else if (!(vict = get_char_vis(ch, arg, NULL, FIND_CHAR_ROOM)))
send_to_char(ch, "They don't seem to be here.\r\n");
send_to_char(ch, "That player is not here.\r\n");
else if (vict == ch) {
send_to_char(ch, "You hit yourself...OUCH!.\r\n");
act("$n hits $mself, and says OUCH!", FALSE, ch, 0, vict, TO_ROOM);
@@ -110,7 +110,7 @@ ACMD(do_kill)
send_to_char(ch, "Kill who?\r\n");
} else {
if (!(vict = get_char_vis(ch, arg, NULL, FIND_CHAR_ROOM)))
send_to_char(ch, "They aren't here.\r\n");
send_to_char(ch, "That player is not here.\r\n");
else if (ch == vict)
send_to_char(ch, "Your mother would be so sad.. :(\r\n");
else {