Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2013-10-08 19:48:11 +0000
committerStijn Buys <ingar@osirion.org>2013-10-08 19:48:11 +0000
commit71e60ee1b4812d27c8c7281b91780da3ea0226a2 (patch)
treee218e5f3479458a0ab184f2431ef2f80d7b23762 /src/game
parentc1b7876160db7860bdb34d877bf55e5f0b833566 (diff)
Improved ship info.
Diffstat (limited to 'src/game')
-rw-r--r--src/game/base/shipmodel.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game/base/shipmodel.cc b/src/game/base/shipmodel.cc
index b0f29ef..6fd809b 100644
--- a/src/game/base/shipmodel.cc
+++ b/src/game/base/shipmodel.cc
@@ -242,19 +242,19 @@ void ShipModel::generate_info()
add_line("^BSpecifications:^N");
std::stringstream str;
- str << "price: ^B" << price() << " ^Ncredits";
+ str << "price: ^B" << price() << " ^Ncredits";
add_line(str.str());
str.str("");
- str << "cargo hold: ^B" << maxcargo() << " ^Ncubic meter";
+ str << "cargo hold: ^B" << maxcargo() << " ^Ncubic meter";
add_line(str.str());
str.str("");
- str << "mass: ^B" << mass() << " ^Nmetric tonnes";
+ str << "mass: ^B" << mass() << " ^Nmetric tonnes";
add_line(str.str());
str.str("");
- str << "hull: ^B" << maxarmor() << "^N";
+ str << "hull strength: ^B" << maxarmor() << "^N";
add_line(str.str());
str.str("");