Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2013-11-11 12:53:09 +0000
committerStijn Buys <ingar@osirion.org>2013-11-11 12:53:09 +0000
commit0b07f5b945c28a8477a02c3ef7c6f5084980011b (patch)
tree8fcc474f2834d48568bbe0ca35566e75ce348c32 /src/core
parent7bdab72e2ddf145a4692ae92b22110c2e7febe67 (diff)
Corrected a small print bug in the 'time' function.
Diffstat (limited to 'src/core')
-rw-r--r--src/core/gameserver.cc3
1 files changed, 1 insertions, 2 deletions
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();