From 63d61f49fcee487cb486fc8853ebbd8a067be946 Mon Sep 17 00:00:00 2001 From: iks Date: Fri, 13 Nov 2020 03:27:56 +0900 Subject: [PATCH] =?utf8?q?[Fix]=20#40954=20=E6=AD=A6=E5=99=A8=E5=8C=A0?= =?utf8?q?=E3=81=A7=E6=AD=A6=E5=99=A8=E3=82=92=E6=AF=94=E8=BC=83=E3=81=97?= =?utf8?q?=E3=81=9F=E3=81=82=E3=81=A8=E4=B8=80=E9=83=A8=E3=82=B3=E3=83=9E?= =?utf8?q?=E3=83=B3=E3=83=89=E3=81=AE=E5=88=9D=E5=9B=9E=E3=81=AB=E6=AD=A6?= =?utf8?q?=E5=99=A8=E3=81=97=E3=81=8B=E9=81=B8=E3=81=B9=E3=81=AA=E3=81=84?= =?utf8?q?=E3=81=AE=E3=82=92=E4=BF=AE=E6=AD=A3=E3=80=82=20/=20After=20comp?= =?utf8?q?arison=20weapons,=20able=20to=20select=20other=20non=20weapon=20?= =?utf8?q?items=20when=20doing=20some=20commands.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/market/building-craft-weapon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/market/building-craft-weapon.c b/src/market/building-craft-weapon.c index 5994d4ac2..67e6c8758 100644 --- a/src/market/building-craft-weapon.c +++ b/src/market/building-craft-weapon.c @@ -369,7 +369,6 @@ PRICE compare_weapons(player_type *customer_ptr, PRICE bcost) while (TRUE) { clear_bldg(0, 22); - item_tester_hook = item_tester_hook_orthodox_melee_weapons; current_world_ptr->character_xtra = TRUE; for (int i = 0; i < n; i++) { int col = (wid * i + mgn); @@ -409,6 +408,7 @@ PRICE compare_weapons(player_type *customer_ptr, PRICE bcost) continue; } + item_tester_hook = item_tester_hook_orthodox_melee_weapons; q = _("第二の武器は?", "What is your second weapon? "); s = _("比べるものがありません。", "You have nothing to compare."); OBJECT_IDX item2; -- 2.11.0