From 018f020cc14b9b0a1a1ffb5dc938264926597c9c Mon Sep 17 00:00:00 2001 From: Eric Branlund Date: Thu, 21 Jan 2021 16:51:12 -0800 Subject: [PATCH] Fixed two instances where search/replace left it_ptr-> in English messages. --- src/cmd-item/cmd-throw.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cmd-item/cmd-throw.c b/src/cmd-item/cmd-throw.c index ba3b064be..ec34be739 100644 --- a/src/cmd-item/cmd-throw.c +++ b/src/cmd-item/cmd-throw.c @@ -67,7 +67,7 @@ static bool check_throw_boomerang(player_type *creature_ptr, it_type *it_ptr, co if (has_melee_weapon(creature_ptr, INVEN_RARM) && has_melee_weapon(creature_ptr, INVEN_LARM)) { item_tester_hook = item_tester_hook_boomerang; - *q = _("どの武器を投げますか? ", "Throw which it_ptr->item? "); + *q = _("どの武器を投げますか? ", "Throw which item? "); *s = _("投げる武器がない。", "You have nothing to throw."); it_ptr->o_ptr = choose_object(creature_ptr, &it_ptr->item, *q, *s, USE_EQUIP, 0); if (!it_ptr->o_ptr) { @@ -101,7 +101,7 @@ static bool check_what_throw(player_type *creature_ptr, it_type *it_ptr) if (!check_throw_boomerang(creature_ptr, it_ptr, &q, &s)) return FALSE; - q = _("どのアイテムを投げますか? ", "Throw which it_ptr->item? "); + q = _("どのアイテムを投げますか? ", "Throw which item? "); s = _("投げるアイテムがない。", "You have nothing to throw."); it_ptr->o_ptr = choose_object(creature_ptr, &it_ptr->item, q, s, USE_INVEN | USE_FLOOR | USE_EQUIP, 0); if (!it_ptr->o_ptr) { -- 2.11.0