fix broken build cause by missing semicolon
This commit is contained in:
@@ -2535,9 +2535,10 @@ pickup_checks()
|
|||||||
else if (IS_DOOR(lev->typ) && (lev->doormask & D_ISOPEN))
|
else if (IS_DOOR(lev->typ) && (lev->doormask & D_ISOPEN))
|
||||||
pline("It won't come off the hinges.");
|
pline("It won't come off the hinges.");
|
||||||
else if (IS_ALTAR(lev->typ))
|
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)
|
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
|
else
|
||||||
There("is nothing here to pick up.");
|
There("is nothing here to pick up.");
|
||||||
return 0;
|
return 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user