]> granicus.if.org Git - nethack/commitdiff
looting fix (trunk only)
authornethack.rankin <nethack.rankin>
Mon, 28 Jul 2003 06:56:34 +0000 (06:56 +0000)
committernethack.rankin <nethack.rankin>
Mon, 28 Jul 2003 06:56:34 +0000 (06:56 +0000)
     #tip shares able_to_loot() but doesn't require free hands.

src/pickup.c

index c15cb347a89240dc146b0aaa22889e28af2caf55..71d39098092f162548923df643efa48528124475 100644 (file)
@@ -1,4 +1,4 @@
-/*     SCCS Id: @(#)pickup.c   3.4     2003/05/25      */
+/*     SCCS Id: @(#)pickup.c   3.4     2003/07/27      */
 /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
 /* NetHack may be freely redistributed.  See license for details. */
 
@@ -1437,7 +1437,7 @@ boolean looting;  /* loot vs tip */
        } else if (nolimbs(youmonst.data)) {
                pline("Without limbs, you cannot %s anything.", verb);
                return FALSE;
-       } else if (!freehand()) {
+       } else if (looting && !freehand()) {
                pline("Without a free %s, you cannot loot anything.",
                        body_part(HAND));
                return FALSE;