diff options
Diffstat (limited to 'src/game/DuelHandler.cpp')
-rw-r--r-- | src/game/DuelHandler.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/DuelHandler.cpp b/src/game/DuelHandler.cpp index d9854d900c8..8da8787ab8b 100644 --- a/src/game/DuelHandler.cpp +++ b/src/game/DuelHandler.cpp @@ -25,6 +25,7 @@ #include "Opcodes.h" #include "UpdateData.h" #include "Player.h" +#include "TimeMgr.h" void WorldSession::HandleDuelAcceptedOpcode(WorldPacket& recvPacket) { @@ -47,7 +48,7 @@ void WorldSession::HandleDuelAcceptedOpcode(WorldPacket& recvPacket) DEBUG_LOG("Player 1 is: %u (%s)", pl->GetGUIDLow(),pl->GetName()); DEBUG_LOG("Player 2 is: %u (%s)", plTarget->GetGUIDLow(),plTarget->GetName()); - time_t now = time(NULL); + time_t now = sGameTime.GetGameTime(); pl->duel->startTimer = now; plTarget->duel->startTimer = now; |