diff options
author | michaels <michaels@cvs.openbsd.org> | 1996-10-14 22:14:38 +0000 |
---|---|---|
committer | michaels <michaels@cvs.openbsd.org> | 1996-10-14 22:14:38 +0000 |
commit | f662dbc148f2e88d1a8a758b1f3e61e40329a362 (patch) | |
tree | 7912691219907774e850e147f00dd958eb4c89f0 /games/larn | |
parent | 65352fdadcc87e82681c8e3d64be1d57463b0a3e (diff) |
vital fixes. From Kenneth Stailey (kstailey@dol-esa.gov)
Diffstat (limited to 'games/larn')
-rw-r--r-- | games/larn/monster.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/larn/monster.c b/games/larn/monster.c index 68d60c23077..9eb76a57889 100644 --- a/games/larn/monster.c +++ b/games/larn/monster.c @@ -1105,9 +1105,9 @@ spattack(x,xx,yy) if (j==0) /* if rusting did not occur */ switch(m) { - case OLEATHER: p = "\nThe %s hit you -- Your lucky you have leather on"; + case OLEATHER: p = "\nThe %s hit you -- You're lucky you have leather on"; break; - case OSSPLATE: p = "\nThe %s hit you -- Your fortunate to have stainless steel armor!"; + case OSSPLATE: p = "\nThe %s hit you -- You're fortunate to have stainless steel armor!"; break; } else { beep(); p = "\nThe %s hit you -- your armor feels weaker"; } |