summaryrefslogtreecommitdiffstats
path: root/robots
diff options
context:
space:
mode:
authorjsm <jsm@NetBSD.org>2000-01-20 13:24:11 +0000
committerjsm <jsm@NetBSD.org>2000-01-20 13:24:11 +0000
commit40daedc4cba1de04093e76eb314f7a81101c357d (patch)
tree617f02a50ae53dce3934f2f48d5a7a2360aa9c8a /robots
parent423949b3e014b8b034149a88e07715d0aadf02ab (diff)
downloadbsdgames-darwin-40daedc4cba1de04093e76eb314f7a81101c357d.tar.gz
bsdgames-darwin-40daedc4cba1de04093e76eb314f7a81101c357d.tar.zst
bsdgames-darwin-40daedc4cba1de04093e76eb314f7a81101c357d.zip
Report scores as auto-bot or not correctly.
Bug report and fix from Malcolm Parsons <malcolm@bits.bris.ac.uk>.
Diffstat (limited to 'robots')
-rw-r--r--robots/score.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/robots/score.c b/robots/score.c
index 092b9fdc..cd6542ac 100644
--- a/robots/score.c
+++ b/robots/score.c
@@ -1,4 +1,4 @@
-/* $NetBSD: score.c,v 1.11 1999/09/18 19:38:54 jsm Exp $ */
+/* $NetBSD: score.c,v 1.12 2000/01/20 13:24:11 jsm Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)score.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: score.c,v 1.11 1999/09/18 19:38:54 jsm Exp $");
+__RCSID("$NetBSD: score.c,v 1.12 2000/01/20 13:24:11 jsm Exp $");
#endif
#endif /* not lint */
@@ -177,7 +177,7 @@ score(score_wfd)
standout();
printw("%5.5d %5.5d %-8.8s %-9.9s %5.5d",
(scp - Top) + 1, scp->s_score, scp->s_name,
- Auto_bot ? "(autobot)" : "", scp->s_level);
+ scp->s_auto ? "(autobot)" : "", scp->s_level);
if (!done_show && scp->s_uid == uid && scp->s_score == Score) {
standend();
done_show = TRUE;