Just a grammar fix to the rent message

This commit is contained in:
Fizban
2009-01-15 21:35:53 +00:00
parent 46f52f3373
commit c0c1b00235
3 changed files with 13 additions and 3 deletions

View File

@@ -347,6 +347,11 @@ ACMD(do_rescue)
for (tmp_ch = world[IN_ROOM(ch)].people; tmp_ch &&
(FIGHTING(tmp_ch) != vict); tmp_ch = tmp_ch->next_in_room);
if ((FIGHTING(ch) == FIGHTING(vict)) && (FIGHTING(tmp_ch) == ch)) {
send_to_char(ch, "You have already rescued %s from %s.\r\n", GET_NAME(vict), GET_NAME(FIGHTING(ch)));
return;
}
if (!tmp_ch) {
act("But nobody is fighting $M!", FALSE, ch, 0, vict, TO_CHAR);
return;