From 842072fdc59e33b46917ac2c1df7714679579dfa Mon Sep 17 00:00:00 2001 From: Eric Branlund Date: Thu, 11 Feb 2021 15:19:33 -0800 Subject: [PATCH] Change "light item" to light" for message about the arcane spell to refuel a lantern or torch. --- src/spell-realm/spells-arcane.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/spell-realm/spells-arcane.c b/src/spell-realm/spells-arcane.c index 4f4658a75..36f289856 100644 --- a/src/spell-realm/spells-arcane.c +++ b/src/spell-realm/spells-arcane.c @@ -29,10 +29,10 @@ void phlogiston(player_type *caster_ptr) } o_ptr->xtra4 += (XTRA16)(max_flog / 2); - msg_print(_("照明用アイテムに燃素を補充した。", "You add phlogiston to your light item.")); + msg_print(_("照明用アイテムに燃素を補充した。", "You add phlogiston to your light.")); if (o_ptr->xtra4 >= max_flog) { o_ptr->xtra4 = (XTRA16)max_flog; - msg_print(_("照明用アイテムは満タンになった。", "Your light item is full.")); + msg_print(_("照明用アイテムは満タンになった。", "Your light is full.")); } caster_ptr->update |= PU_TORCH; -- 2.11.0