From: Pasi Kallinen Date: Thu, 21 Jul 2022 15:27:50 +0000 (+0300) Subject: Sitting on amorphous corpse X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8747d2ddce3318a971448d2eaeae677304c21c66;p=nethack Sitting on amorphous corpse --- diff --git a/src/sit.c b/src/sit.c index c30695747..14d387821 100644 --- a/src/sit.c +++ b/src/sit.c @@ -280,7 +280,9 @@ dosit(void) pline("It's probably not a good time for a picnic..."); } else { You("sit on %s.", the(xname(obj))); - if (!(Is_box(obj) || objects[obj->otyp].oc_material == CLOTH)) + if (obj->otyp == CORPSE && amorphous(&mons[obj->corpsenm])) + pline("It's squishy..."); + else if (!(Is_box(obj) || objects[obj->otyp].oc_material == CLOTH)) pline("It's not very comfortable..."); } } else if (trap != 0 || (u.utrap && (u.utraptype >= TT_LAVA))) {