mirror of
https://github.com/tbamud/tbamud.git
synced 2026-03-16 17:26:33 +01:00
Just a grammar fix to the rent message
This commit is contained in:
parent
46f52f3373
commit
c0c1b00235
3 changed files with 13 additions and 3 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue