summaryrefslogtreecommitdiff
path: root/src/game/units.cpp
diff options
context:
space:
mode:
authorPaweł Redman <pawel.redman@gmail.com>2018-04-21 18:59:42 +0200
committerPaweł Redman <pawel.redman@gmail.com>2018-04-21 18:59:42 +0200
commitc3a8bc36ce75984bdb5a54fbae4f77d84e4efbcc (patch)
tree1d334838c8f98e05b0c0c77a5f56ca65412a3585 /src/game/units.cpp
parent4cfe1361fff6223d11a25cefd74af7a51b7d57bd (diff)
Get rid of src/game/text.cpp.
Diffstat (limited to 'src/game/units.cpp')
-rw-r--r--src/game/units.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/units.cpp b/src/game/units.cpp
index 828ca6b..ef74b74 100644
--- a/src/game/units.cpp
+++ b/src/game/units.cpp
@@ -220,11 +220,11 @@ void unit_t::die(unit_t *killer)
case UNIT_SOLDIER:
case UNIT_SCIENTIST:
case UNIT_SPIDER:
- game->interface.print(name + " " + text::get(text::UNIT_DEATH) + ".");
+ game->interface.print(name + " died.");
break;
default:
- game->interface.print(name + " " + text::get(text::UNIT_DESTRUCTION) + ".");
+ game->interface.print(name + " was destroyed.");
break;
}