diff options
author | Stijn Buys <ingar@osirion.org> | 2013-11-11 12:53:09 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2013-11-11 12:53:09 +0000 |
commit | 0b07f5b945c28a8477a02c3ef7c6f5084980011b (patch) | |
tree | 8fcc474f2834d48568bbe0ca35566e75ce348c32 /src/core | |
parent | 7bdab72e2ddf145a4692ae92b22110c2e7febe67 (diff) |
Corrected a small print bug in the 'time' function.
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/gameserver.cc | 3 |
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(); |