From 5b02ad521defe6b031fa129749fff7986e9f1a33 Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Thu, 6 Jan 2022 14:39:27 +0200 Subject: [PATCH] Don't autoquiver aklys ... even though it is a throwing weapon, it's meant to be wielded and fired instead of fired from quiver. --- src/dothrow.c | 2 ++ 1 file changed, 2 insertions(+) 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; }