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

@@ -403,7 +403,7 @@ ACMD(do_group)
send_to_char(ch, "But you are already part of a group.\r\n");
return;
} else if (!GROUP(vict)) {
send_to_char(ch, "They are not a part of a group!\r\n");
act("$E$u is not a part of a group!", FALSE, ch, 0, vict, TO_CHAR);
return;
} else if (!IS_SET(GROUP_FLAGS(GROUP(vict)), GROUP_OPEN)) {
send_to_char(ch, "That group isn't accepting members.\r\n");
@@ -425,7 +425,7 @@ ACMD(do_group)
send_to_char(ch, "Only the group's leader can kick members out.\r\n");
return;
} else if (GROUP(vict) != GROUP(ch)) {
send_to_char(ch, "They are not a member of your group!\r\n");
act("$E$u is not a member of your group!", FALSE, ch, 0, vict, TO_CHAR);
return;
}
send_to_char(ch, "You have kicked %s out of the group.\r\n", GET_NAME(vict));