From 38edebe4bdeb8caedccf6127a86fddfe9c5808a8 Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Sat, 16 Dec 2017 22:41:48 +0000 Subject: Fully working nests. --- src/game/text.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/game/text.cpp') 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"; -- cgit