diff options
author | Stijn Buys <ingar@osirion.org> | 2013-10-08 19:48:11 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2013-10-08 19:48:11 +0000 |
commit | 71e60ee1b4812d27c8c7281b91780da3ea0226a2 (patch) | |
tree | e218e5f3479458a0ab184f2431ef2f80d7b23762 /src/game | |
parent | c1b7876160db7860bdb34d877bf55e5f0b833566 (diff) |
Improved ship info.
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/base/shipmodel.cc | 8 |
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(""); |