From 36a95838d17ffaee4020a2aba832af6636591df4 Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Thu, 14 Dec 2017 17:13:36 +0100 Subject: Rework collision masks and improve AI. --- src/text.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/text.cpp') 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"; -- cgit