Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
Diffstat (limited to 'src/game')
-rw-r--r--src/game/base/shipmodel.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/game/base/shipmodel.cc b/src/game/base/shipmodel.cc
index ee2e647..1dc8ba1 100644
--- a/src/game/base/shipmodel.cc
+++ b/src/game/base/shipmodel.cc
@@ -36,7 +36,9 @@ void ShipModel::generate_info()
{
//clear_text();
- add_text("");
+ if (text().size())
+ add_text("");
+
add_text("^BSpecifications:^N");
std::stringstream str;
str << "price: ^B" << price() << " ^Ncredits";
@@ -60,11 +62,11 @@ void ShipModel::generate_info()
str.str("");
if (jumpdrive()) {
- add_text("hyperspace jump drive capable");
+ add_text("^Bhyperspace jump drive");
}
if (dock()) {
- add_text("docking capable");
+ add_text("^Bdockable");
}
}