diff options
Diffstat (limited to 'src/text.cpp')
-rw-r--r-- | src/text.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/text.cpp b/src/text.cpp index 3c89610..ad8f007 100644 --- a/src/text.cpp +++ b/src/text.cpp @@ -4,8 +4,7 @@ namespace text { language_t language = LANG_ENGLISH; -static const char *human_names[] = -{ +static const char *human_names[] = { "Kowalski", "Jackson", "Carter", "O'Neill", "Hammond", "Mitchell" }; @@ -33,7 +32,7 @@ static std::string get_english(index_t index) return human_names[rand() % count(human_names)]; case UNIT_DEATH: - return "Death"; + return "died"; case UNIT_ATTACK: return "attacks"; |