R06008 - Ludios level in score list

<Someone> 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.
This commit is contained in:
cohrs
2002-08-04 23:39:42 +00:00
parent 8386f680a6
commit 869a600da8

View File

@@ -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);
}