From: Pasi Kallinen Date: Thu, 6 Jan 2022 12:39:27 +0000 (+0200) Subject: Don't autoquiver aklys X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5b02ad521defe6b031fa129749fff7986e9f1a33;p=nethack Don't autoquiver aklys ... even though it is a throwing weapon, it's meant to be wielded and fired instead of fired from quiver. --- diff --git a/src/dothrow.c b/src/dothrow.c index 763a0a555..9c3bf1498 100644 --- a/src/dothrow.c +++ b/src/dothrow.c @@ -382,6 +382,8 @@ autoquiver(void) /* Ordinary weapon */ if (objects[otmp->otyp].oc_skill == P_DAGGER && !omissile) omissile = otmp; + else if (otmp->otyp == AKLYS) + continue; else omisc = otmp; }