summaryrefslogtreecommitdiff
path: root/src/text.cpp
diff options
context:
space:
mode:
authorPaweł Redman <pawel.redman@gmail.com>2017-12-14 17:13:36 +0100
committerPaweł Redman <pawel.redman@gmail.com>2017-12-14 17:23:35 +0100
commit36a95838d17ffaee4020a2aba832af6636591df4 (patch)
tree8853eb8623970201d009a4a4637e5451c9103f8c /src/text.cpp
parentd376eb30b8363f712e3a0bbc04ea584547c09e65 (diff)
Rework collision masks and improve AI.
Diffstat (limited to 'src/text.cpp')
-rw-r--r--src/text.cpp5
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";