diff options
author | Paul Janzen <pjanzen@cvs.openbsd.org> | 2000-07-03 05:23:47 +0000 |
---|---|---|
committer | Paul Janzen <pjanzen@cvs.openbsd.org> | 2000-07-03 05:23:47 +0000 |
commit | 07fa35ce134f0db4619e4f6f624a73f734592b00 (patch) | |
tree | a244e6f77987cb2dd58051e6465abe2a52fcac17 /games/battlestar/com1.c | |
parent | eb9c0ff585d2e7d471d66b411a6de67434fb6a82 (diff) |
Finding bugs in battlestar is like shooting fish in a barrel.
Don't overflow beenthere[]. Add "verbose" option.
Fix spelling (including embedded hyphens in descriptions) and grammar.
"Kill" will now use the laser if you have no cutting implements.
Formatting.
You can do more things to the bathing goddess.
A little less guess-the-word. Occasionally better error messages,
particularly with "all" when nothing applies.
"kick door" no longer segfaults. Nor does "kill door".
More bugs remain...
Diffstat (limited to 'games/battlestar/com1.c')
-rw-r--r-- | games/battlestar/com1.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/games/battlestar/com1.c b/games/battlestar/com1.c index 9f95e97af6a..99f3a7d300e 100644 --- a/games/battlestar/com1.c +++ b/games/battlestar/com1.c @@ -1,4 +1,4 @@ -/* $OpenBSD: com1.c,v 1.7 1999/09/25 20:30:45 pjanzen Exp $ */ +/* $OpenBSD: com1.c,v 1.8 2000/07/03 05:23:44 pjanzen Exp $ */ /* $NetBSD: com1.c,v 1.3 1995/03/21 15:06:51 cgd Exp $ */ /* @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)com1.c 8.2 (Berkeley) 4/28/95"; #else -static char rcsid[] = "$OpenBSD: com1.c,v 1.7 1999/09/25 20:30:45 pjanzen Exp $"; +static char rcsid[] = "$OpenBSD: com1.c,v 1.8 2000/07/03 05:23:44 pjanzen Exp $"; #endif #endif /* not lint */ @@ -126,10 +126,10 @@ news() convert(TONIGHT); ClearBit(location[POOLS].objects, BATHGOD); if (OUTSIDE && ourtime - rythmn - CYCLE < 10) { - puts("The dying sun sinks into the ocean, leaving a blood stained sunset."); + puts("The dying sun sinks into the ocean, leaving a blood-stained sunset."); puts("The sky slowly fades from orange to violet to black. A few stars"); puts("flicker on, and it is night."); - puts("The world seems completly different at night."); + puts("The world seems completely different at night."); } } rythmn = ourtime - ourtime % CYCLE; |