diff options
Diffstat (limited to 'src/game/DuelHandler.cpp')
-rw-r--r-- | src/game/DuelHandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/DuelHandler.cpp b/src/game/DuelHandler.cpp index 0014802b1cb..99c8a774b03 100644 --- a/src/game/DuelHandler.cpp +++ b/src/game/DuelHandler.cpp @@ -43,7 +43,7 @@ void WorldSession::HandleDuelAcceptedOpcode(WorldPacket& recvPacket) if (pl == pl->duel->initiator || !plTarget || pl == plTarget || pl->duel->startTime != 0 || plTarget->duel->startTime != 0) return; - //sLog.outDebug( "WORLD: received CMSG_DUEL_ACCEPTED" ); + //sLog.outDebug("WORLD: received CMSG_DUEL_ACCEPTED"); DEBUG_LOG("Player 1 is: %u (%s)", pl->GetGUIDLow(),pl->GetName()); DEBUG_LOG("Player 2 is: %u (%s)", plTarget->GetGUIDLow(),plTarget->GetName()); @@ -57,7 +57,7 @@ void WorldSession::HandleDuelAcceptedOpcode(WorldPacket& recvPacket) void WorldSession::HandleDuelCancelledOpcode(WorldPacket& recvPacket) { - //sLog.outDebug( "WORLD: received CMSG_DUEL_CANCELLED" ); + //sLog.outDebug("WORLD: received CMSG_DUEL_CANCELLED"); // no duel requested if (!GetPlayer()->duel) |