From 0b07f5b945c28a8477a02c3ef7c6f5084980011b Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Mon, 11 Nov 2013 12:53:09 +0000 Subject: Corrected a small print bug in the 'time' function. --- src/core/gameserver.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/core') diff --git a/src/core/gameserver.cc b/src/core/gameserver.cc index 86f130f..544f660 100644 --- a/src/core/gameserver.cc +++ b/src/core/gameserver.cc @@ -51,8 +51,7 @@ void func_time(std::string const &args) << std::setw(2) << std::setfill('0') << day << " " << std::setw(2) << hour << ":" << std::setw(2) << min << ":" - << std::setw(2) << sec << " " - << std::setw(2) << " "; + << std::setw(2) << sec << " " ; // uptime float uptime = core::game()->time(); -- cgit v1.2.3