From: Pasi Kallinen Date: Fri, 7 Feb 2020 21:15:43 +0000 (+0200) Subject: YAFM when sitting on a towel X-Git-Tag: NetHack-3.7.0_WIP-2020-02-14~58 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4943fe23b31365cdc3646058a0c13175262118e7;p=nethack YAFM when sitting on a towel (via xNetHack) --- diff --git a/src/sit.c b/src/sit.c index 29426632e..19d5dbdfe 100644 --- a/src/sit.c +++ b/src/sit.c @@ -75,6 +75,8 @@ dosit() You("coil up around your %shoard.", (obj->quan + money_cnt(g.invent) < u.ulevel * 1000) ? "meager " : ""); + } else if (obj->otyp == TOWEL) { + 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))