From 869a600da8670d66e4e80820bb3c5c467ff7f62f Mon Sep 17 00:00:00 2001 From: cohrs Date: Sun, 4 Aug 2002 23:39:42 +0000 Subject: [PATCH] R06008 - Ludios level in score list reported that the Ludios level is shown on death. It's not shown on the tombstone, but it was displayed in the topten list. Now it's not shown in the topten list either. --- src/topten.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/topten.c b/src/topten.c index ec2253a80..0191997e5 100644 --- a/src/topten.c +++ b/src/topten.c @@ -629,8 +629,9 @@ boolean so; } Sprintf(eos(linebuf), fmt, arg); } else { - Sprintf(eos(linebuf), " in %s on level %d", - dungeons[t1->deathdnum].dname, t1->deathlev); + Sprintf(eos(linebuf), " in %s", dungeons[t1->deathdnum].dname); + if (t1->deathdnum != knox_level.dnum) + Sprintf(eos(linebuf), " on level %d", t1->deathlev); if (t1->deathlev != t1->maxlvl) Sprintf(eos(linebuf), " [max %d]", t1->maxlvl); }