Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2011-05-31 13:17:14 +0000
committerStijn Buys <ingar@osirion.org>2011-05-31 13:17:14 +0000
commitb7d62e90a7a0e4e404623af0c646495a3dd3fd2b (patch)
treea8c15b9a40428e5c7bb03138a9260f16f4e3daf4 /src/dedicated
parent1c63cbf204b1d2c667ce9f821ccb197d0ffb0ac3 (diff)
Removed a forced recalculateLocalAabb for compound shapes,
semi-colon in chat messages doesn't truncate the chat text any more, changed chat prompt to "Command:" if the first character is a slash, small misc cleanups
Diffstat (limited to 'src/dedicated')
-rw-r--r--src/dedicated/console.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dedicated/console.cc b/src/dedicated/console.cc
index 10fe261..2481f58 100644
--- a/src/dedicated/console.cc
+++ b/src/dedicated/console.cc
@@ -237,7 +237,7 @@ void Console::draw_status()
status << "uptime ";
if (uptime_days > 0) {
- status << uptime_days << " " << aux::plural("day", uptime_days);
+ status << uptime_days << " " << aux::plural("day", uptime_days) << " ";
}
status << std::setfill('0') << std::setw(2) << uptime_hours << ":"
<< std::setfill('0') << std::setw(2) << uptime_minutes << ":"