From: mogami Date: Wed, 1 Oct 2003 19:10:59 +0000 (+0000) Subject: 「無銘の」キーワードが未鑑定のアイテムにマッチしていたエンバグ修正。 X-Git-Tag: v2.1.2~1044 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=ad2f5ab226594377dac6f2f3500a125fff6dc73d;p=hengband%2Fhengband.git 「無銘の」キーワードが未鑑定のアイテムにマッチしていたエンバグ修正。 --- diff --git a/src/autopick.c b/src/autopick.c index db0fdad76..e35492010 100644 --- a/src/autopick.c +++ b/src/autopick.c @@ -1039,6 +1039,13 @@ static bool is_autopick_aux(object_type *o_ptr, autopick_type *entry, cptr o_nam return FALSE; } } + + /* Unidentified */ + else + { + /* Not known to be nameless */ + return FALSE; + } } /*** Unaware items ***/