From a26fa49508fb53009cf45794e5118ba6f7916199 Mon Sep 17 00:00:00 2001 From: nothere Date: Sat, 24 Jul 2004 22:34:53 +0000 Subject: [PATCH] =?utf8?q?=E3=82=A2=E3=83=BC=E3=83=81=E3=83=A3=E3=83=BC?= =?utf8?q?=E3=81=8C=E4=BD=9C=E6=88=90=E3=81=97=E3=81=9F=E7=9F=A2=E3=82=84?= =?utf8?q?=E5=BC=BE=E3=81=8C=E3=82=B6=E3=83=83=E3=82=AF=E3=81=AE=E6=9C=80?= =?utf8?q?=E5=88=9D=E3=81=AB=E6=9D=A5=E3=82=8B=E5=A0=B4=E5=90=88=E3=81=AB?= =?utf8?q?=E8=87=AA=E5=8B=95=E9=8A=98=E5=88=BB=E3=81=BF=E3=81=8C=E8=A1=8C?= =?utf8?q?=E3=82=8F=20=E3=82=8C=E3=81=AA=E3=81=84=E3=83=90=E3=82=B0?= =?utf8?q?=E3=82=92=E4=BF=AE=E6=AD=A3.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/racial.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/racial.c b/src/racial.c index c2729a970..59e023ccc 100644 --- a/src/racial.c +++ b/src/racial.c @@ -157,7 +157,7 @@ static bool do_cmd_archer(void) #endif /* Auto-inscription */ - if (slot > 0) autopick_alter_item(slot, FALSE); + if (slot >= 0) autopick_alter_item(slot, FALSE); /* Destroy the wall */ cave_alter_feat(y, x, FF_HURT_ROCK); @@ -231,7 +231,7 @@ static bool do_cmd_archer(void) slot = inven_carry(q_ptr); /* Auto-inscription */ - if (slot > 0) autopick_alter_item(slot, FALSE); + if (slot >= 0) autopick_alter_item(slot, FALSE); } /**********Create bolts*********/ else if (ext == 3) @@ -299,7 +299,7 @@ static bool do_cmd_archer(void) slot = inven_carry(q_ptr); /* Auto-inscription */ - if (slot > 0) autopick_alter_item(slot, FALSE); + if (slot >= 0) autopick_alter_item(slot, FALSE); } return TRUE; } -- 2.11.0