diff options
Diffstat (limited to 'src/dedicated')
-rw-r--r-- | src/dedicated/console.cc | 2 |
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 << ":" |