From: Deskull Date: Wed, 28 Nov 2018 13:29:54 +0000 (+0900) Subject: #37353 [Fix] 差し戻し作業のミスを修正。 / Fix mistake of remand to get_item(). X-Git-Url: http://git.osdn.net/view?p=hengband%2Fhengband.git;a=commitdiff_plain;h=0a2670bdeed794c745267d446d6055509096753e #37353 [Fix] 差し戻し作業のミスを修正。 / Fix mistake of remand to get_item(). --- diff --git a/src/cmd-item.c b/src/cmd-item.c index 58b428283..5e9db0160 100644 --- a/src/cmd-item.c +++ b/src/cmd-item.c @@ -1286,7 +1286,7 @@ static void do_cmd_refill_torch(void) q = _("どの松明で明かりを強めますか? ", "Refuel with which torch? "); s = _("他に松明がない。", "You have no extra torches."); - if (get_item(&item, q, s, (USE_INVEN | USE_FLOOR))) return; + if (!get_item(&item, q, s, (USE_INVEN | USE_FLOOR))) return; /* Get the item (in the pack) */ if (item >= 0) diff --git a/src/cmd4.c b/src/cmd4.c index 9769a61df..51a76923b 100644 --- a/src/cmd4.c +++ b/src/cmd4.c @@ -8428,7 +8428,8 @@ static void do_cmd_knowledge_autopick(void) { tmp = _("拾う", "Pickup"); } - else { + else + { tmp = _("確認", "Query"); }