OSDN Git Service

To be more idiomatic, drop "was" from English message for death of dragon centipedes.
authorEric Branlund <ebranlund@fastmail.com>
Wed, 3 Feb 2021 22:02:50 +0000 (14:02 -0800)
committerEric Branlund <ebranlund@fastmail.com>
Wed, 3 Feb 2021 22:02:50 +0000 (14:02 -0800)
src/monster-floor/special-death-switcher.c

index 33f0997..4a15bf7 100644 (file)
@@ -290,7 +290,7 @@ static void on_dead_dragon_centipede(player_type *player_ptr, monster_death_type
     GAME_TEXT m_name[MAX_NLEN];
     monster_desc(player_ptr, m_name, md_ptr->m_ptr, MD_NONE);
     if (notice) {
-        msg_format(_("%sが再生した!", "The %s was reproduced!"), m_name);
+        msg_format(_("%sが再生した!", "The %s reproduced!"), m_name);
         sound(SOUND_SUMMON);
     }
 }