[0101] Fixed 2 mixed up opcodes

Signed-off-by: Yaki Khadafi <ElSolDolLo@gmail.com>
This commit is contained in:
Yaki Khadafi 2012-08-16 08:27:04 +03:00 committed by Antz
parent a15359eb5e
commit 1419976076
2 changed files with 3 additions and 3 deletions

View file

@ -382,8 +382,8 @@ enum Opcodes
CMSG_ATTACKSTOP = 0x4106, // 4.3.4 15595
SMSG_ATTACKSTART = 0x2D15, // 4.3.4 15595
SMSG_ATTACKSTOP = 0x0934, // 4.3.4 15595
SMSG_ATTACKSWING_NOTINRANGE = 0x6C07, // 4.3.4 15595
SMSG_ATTACKSWING_BADFACING = 0x0B36, // 4.3.4 15595
SMSG_ATTACKSWING_NOTINRANGE = 0x0B36, // 4.3.4 15595
SMSG_ATTACKSWING_BADFACING = 0x6C07, // 4.3.4 15595
SMSG_PENDING_RAID_LOCK = 0x1148,
SMSG_ATTACKSWING_DEADTARGET = 0x2B26, // 4.3.4 15595
SMSG_ATTACKSWING_CANT_ATTACK = 0x0016, // 4.3.4 15595

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "0100"
#define REVISION_NR "0101"
#endif // __REVISION_NR_H__