From 0fb263ea881f898e16cf9c6ef347ca5e413b33dc Mon Sep 17 00:00:00 2001 From: nhmall Date: Mon, 5 Nov 2018 15:33:02 -0500 Subject: [PATCH] fix broken build cause by missing semicolon --- src/hack.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/hack.c b/src/hack.c index 592067fa5..7a5e48116 100644 --- a/src/hack.c +++ b/src/hack.c @@ -2535,9 +2535,10 @@ pickup_checks() 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.") + pline("Moving the altar would be a very bad idea."); else if (lev->typ == STAIRS) - pline_The("stairs are solidly fixed to the ground."); + pline_The("stairs are solidly fixed to the %s.", + surface(u.ux, u.uy)); else There("is nothing here to pick up."); return 0;