From a055c2aa0aba2a3b80a37c49f3f89cc64d86abd6 Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Fri, 13 Apr 2018 17:27:44 +0200 Subject: Half-assed rockets. --- 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 9b5503b..28addc9 100644 --- a/src/game/text.cpp +++ b/src/game/text.cpp @@ -55,6 +55,9 @@ static std::string get_english(index_t index) case SAY_FIRING: return "Firing!"; + case SAY_NO_ROCKETS: + return "Out of rockets."; + case UNIT_NAME_SPIDER: return "Spider"; @@ -70,6 +73,9 @@ static std::string get_english(index_t index) case UNIT_DEATH: return "died"; + case UNIT_DESTRUCTION: + return "was destroyed"; + default: abort(); } -- cgit