From b9419c0605623f11347100ee2327caf27bf788ef Mon Sep 17 00:00:00 2001 From: VladimirMangos Date: Sat, 21 Nov 2009 09:18:32 +0300 Subject: [PATCH] [8853] Not attempt output not existed name in opcode table. --- src/game/WorldSocket.cpp | 3 +-- src/shared/revision_nr.h | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/game/WorldSocket.cpp b/src/game/WorldSocket.cpp index fb9cee31d..5f299ef5d 100644 --- a/src/game/WorldSocket.cpp +++ b/src/game/WorldSocket.cpp @@ -661,8 +661,7 @@ int WorldSocket::ProcessIncoming (WorldPacket* new_pct) if (opcode >= NUM_MSG_TYPES) { - sLog.outError( "SESSION: received non-existed opcode %s (0x%.4X)", - LookupOpcodeName(opcode), opcode); + sLog.outError( "SESSION: received non-existed opcode 0x%.4X", opcode); return -1; } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 751875b29..7eb5e59e1 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "8852" + #define REVISION_NR "8853" #endif // __REVISION_NR_H__