From: Pasi Kallinen Date: Mon, 5 Nov 2018 16:35:11 +0000 (+0200) Subject: Feedback on trying to pick up stairs or altar X-Git-Tag: NetHack-3.6.2_Released~170^2~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e8eadac3c84e965a77d493c5d3cb2d812f906ef6;p=nethack Feedback on trying to pick up stairs or altar --- diff --git a/src/hack.c b/src/hack.c index 0593bd683..592067fa5 100644 --- a/src/hack.c +++ b/src/hack.c @@ -2534,6 +2534,10 @@ pickup_checks() You("could drink the %s...", hliquid("water")); else if (IS_DOOR(lev->typ) && (lev->doormask & D_ISOPEN)) pline("It won't come off the hinges."); + else if (IS_ALTAR(lev->typ)) + pline("Moving the altar would be a very bad idea.") + else if (lev->typ == STAIRS) + pline_The("stairs are solidly fixed to the ground."); else There("is nothing here to pick up."); return 0;