grammar bit

<Someone> wrote:
> You find an anti-magic field.
> Where do you want to jump?  (For instructions type a ?)
> You pass right over _a_ anti-magic field.
This commit is contained in:
nethack.allison
2006-05-17 20:15:46 +00:00
parent 1fcbfd85c9
commit a6c608403b
2 changed files with 3 additions and 3 deletions

View File

@@ -561,9 +561,8 @@ hurtle_step(arg, x, y)
return TRUE;
} else {
if (ttmp->tseen)
You("pass right over %s %s.",
(ttmp->ttyp == ARROW_TRAP) ? "an" : "a",
defsyms[trap_to_defsym(ttmp->ttyp)].explanation);
You("pass right over %s.",
an(defsyms[trap_to_defsym(ttmp->ttyp)].explanation));
}
}
if (--*range < 0) /* make sure our range never goes negative */