diff options
author | Paweł Redman <pawel.redman@gmail.com> | 2017-12-16 22:41:48 +0000 |
---|---|---|
committer | Paweł Redman <pawel.redman@gmail.com> | 2017-12-16 22:41:48 +0000 |
commit | 38edebe4bdeb8caedccf6127a86fddfe9c5808a8 (patch) | |
tree | 466cf659201a66a12d922943337e636b5125bccb /src/game/text.cpp | |
parent | 5c7d962e605e123e1ce4e0610e8f330b1f4f5e82 (diff) |
Fully working nests.
Diffstat (limited to 'src/game/text.cpp')
-rw-r--r-- | src/game/text.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/game/text.cpp b/src/game/text.cpp index 3b611e2..bdd68ed 100644 --- a/src/game/text.cpp +++ b/src/game/text.cpp @@ -29,6 +29,9 @@ static std::string get_english(index_t index) case UNIT_NAME_SOLDIER: return soldier_names[rand() % count(soldier_names)]; + case UNIT_NAME_NEST: + return "Nest"; + case UNIT_DEATH: return "died"; @@ -73,6 +76,9 @@ static std::string get_polish(index_t index) case UNIT_NAME_SOLDIER: return soldier_names[rand() % count(soldier_names)]; + case UNIT_NAME_NEST: + return "Gniazdo"; + case UNIT_DEATH: return "nie żyje"; |