From baeeed3b71e15ff793d3c1a569a2d0e0ba0aa523 Mon Sep 17 00:00:00 2001 From: Eric Branlund Date: Wed, 25 Sep 2019 22:08:34 -0700 Subject: [PATCH] Corrected subject/verb agreement in English message for darkness cancelling a light area spell. --- src/spells2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spells2.c b/src/spells2.c index 0c5e87d58..e2a00e4b2 100644 --- a/src/spells2.c +++ b/src/spells2.c @@ -1901,7 +1901,7 @@ bool lite_area(player_type *caster_ptr, HIT_POINT dam, POSITION rad) { if (d_info[caster_ptr->dungeon_idx].flags1 & DF1_DARKNESS) { - msg_print(_("ダンジョンが光を吸収した。", "The darkness of this dungeon absorb your light.")); + msg_print(_("ダンジョンが光を吸収した。", "The darkness of this dungeon absorbs your light.")); return FALSE; } -- 2.11.0