Skip to content

Commit

Permalink
[8853] Not attempt output not existed name in opcode table.
Browse files Browse the repository at this point in the history
  • Loading branch information
VladimirMangos committed Nov 21, 2009
1 parent 705b035 commit 048e855
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/game/WorldSocket.cpp
Expand Up @@ -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;
}

Expand Down
2 changes: 1 addition & 1 deletion 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__

0 comments on commit 048e855

Please sign in to comment.