Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/gameserver.cc')
-rw-r--r--src/core/gameserver.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/gameserver.cc b/src/core/gameserver.cc
index 58367e5..b4b3322 100644
--- a/src/core/gameserver.cc
+++ b/src/core/gameserver.cc
@@ -52,7 +52,7 @@ void func_time(std::string const &args)
<< std::setw(2) << hour << ":"
<< std::setw(2) << min << ":"
<< std::setw(2) << sec << " "
- << std::setw(2) << " ";
+ << std::setw(2) << " ";
// uptime
float uptime = core::game()->time();
@@ -68,9 +68,9 @@ void func_time(std::string const &args)
const int uptime_seconds = (int) floorf(uptime);
- con_print << " Uptime: ";
+ con_print << "Uptime: ";
if (uptime_days > 0) {
- con_print << uptime_days << " " << aux::plural("day", uptime_days);
+ con_print << uptime_days << " " << aux::plural("day", uptime_days) << " ";
}
con_print << std::setfill('0') << std::setw(2) << uptime_hours << ":"
<< std::setfill('0') << std::setw(2) << uptime_minutes << ":"