Revert "feat(core): Ensure that all actions are compared to fixed point in time (#1236) (#1458)" (#1471)

This reverts commit 51b8773528.
This commit is contained in:
Nefertumm
2019-02-15 15:14:49 -03:00
committed by GitHub
parent 23e7ae6a2f
commit c15206fc15
108 changed files with 509 additions and 933 deletions

View File

@@ -15,7 +15,6 @@
#include <openssl/md5.h>
#include "Database/DatabaseEnv.h"
#include "World.h"
#include "GameTime.h"
#include "Player.h"
#include "Util.h"
#include "WardenWin.h"
@@ -184,7 +183,7 @@ void WardenWin::HandleHashResult(ByteBuffer &buff)
_initialized = true;
_previousTimestamp = GameTime::GetGameTimeMS();
_previousTimestamp = World::GetGameTimeMS();
}
void WardenWin::RequestData()
@@ -200,7 +199,7 @@ void WardenWin::RequestData()
if (_otherChecksTodo.empty())
_otherChecksTodo.assign(sWardenCheckMgr->OtherChecksIdPool.begin(), sWardenCheckMgr->OtherChecksIdPool.end());
_serverTicks = GameTime::GetGameTimeMS();
_serverTicks = World::GetGameTimeMS();
uint16 id;
uint8 type;
@@ -388,7 +387,7 @@ void WardenWin::HandleData(ByteBuffer &buff)
buff >> newClientTicks;
#if defined(ENABLE_EXTRAS) && defined(ENABLE_EXTRA_LOGS)
uint32 ticksNow = GameTime::GetGameTimeMS();
uint32 ticksNow = World::GetGameTimeMS();
uint32 ourTicks = newClientTicks + (ticksNow - _serverTicks);
sLog->outDebug(LOG_FILTER_WARDEN, "ServerTicks %u", ticksNow); // Now