diff --git a/doc/fixes3-7-0.txt b/doc/fixes3-7-0.txt index ce2f635eb..9f885d4cb 100644 --- a/doc/fixes3-7-0.txt +++ b/doc/fixes3-7-0.txt @@ -909,6 +909,8 @@ fix a pair of off-by-one bugs when doling out initial characteristics points, effect across a large set of games using a marker to write "novel" or "paperback book" on a known blank spellbook was producing a randomly chosen Pratchett novel; make it fail instead +when a monster killed a pudding and it left a glob, that glob might not be + displayed on the map (wasn't an issue for killed-by-hero case) Fixes to 3.7.0-x Problems that Were Exposed Via git Repository diff --git a/src/mon.c b/src/mon.c index 1ebb84964..4f53b0c50 100644 --- a/src/mon.c +++ b/src/mon.c @@ -654,7 +654,7 @@ make_corpse(struct monst *mtmp, unsigned int corpseflags) newsym(x, y); return obj; default: -default_1: + default_1: if (g.mvitals[mndx].mvflags & G_NOCORPSE) { return (struct obj *) 0; } else {