OSDN Git Service

Change "light item" to light" for message about the arcane spell to refuel a lantern...
authorEric Branlund <ebranlund@fastmail.com>
Thu, 11 Feb 2021 23:19:33 +0000 (15:19 -0800)
committerEric Branlund <ebranlund@fastmail.com>
Thu, 11 Feb 2021 23:19:33 +0000 (15:19 -0800)
src/spell-realm/spells-arcane.c

index 4f4658a..36f2898 100644 (file)
@@ -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;