From 8747d2ddce3318a971448d2eaeae677304c21c66 Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Thu, 21 Jul 2022 18:27:50 +0300 Subject: [PATCH] Sitting on amorphous corpse --- src/sit.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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))) {