aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorclick <none@none>2010-05-03 05:32:35 +0200
committerclick <none@none>2010-05-03 05:32:35 +0200
commit0692dc3704e1471e2934ca41f32caa9bb0a58be2 (patch)
treedd7c73828e5e6517803b3aab0cdda23ee27aad8e /src
parentb82a1f7fe2c0529a0f0f43ef7208e024da4e8fe2 (diff)
Rename some more opcodes - patch by Zor
--HG-- branch : trunk
Diffstat (limited to 'src')
-rw-r--r--src/game/Opcodes.cpp4
-rw-r--r--src/game/Opcodes.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/game/Opcodes.cpp b/src/game/Opcodes.cpp
index 324d4c4b680..2a69553abdf 100644
--- a/src/game/Opcodes.cpp
+++ b/src/game/Opcodes.cpp
@@ -1242,8 +1242,8 @@ OpcodeHandler opcodeTable[NUM_MSG_TYPES] =
/*0x4BB*/ { "SMSG_CALENDAR_ACTION_PENDING", STATUS_NEVER, &WorldSession::Handle_ServerSide },
/*0x4BC*/ { "SMSG_EQUIPMENT_SET_LIST", STATUS_NEVER, &WorldSession::Handle_ServerSide },
/*0x4BD*/ { "CMSG_EQUIPMENT_SET_SAVE", STATUS_LOGGEDIN, &WorldSession::HandleEquipmentSetSave },
- /*0x4BE*/ { "CMSG_UNKNOWN_1214", STATUS_NEVER, &WorldSession::Handle_NULL },
- /*0x4BF*/ { "SMSG_UNKNOWN_1215", STATUS_NEVER, &WorldSession::Handle_ServerSide },
+ /*0x4BE*/ { "CMSG_UPDATE_PROJECTILE_POSITION", STATUS_NEVER, &WorldSession::Handle_NULL },
+ /*0x4BF*/ { "SMSG_SET_PROJECTILE_POSITION", STATUS_NEVER, &WorldSession::Handle_ServerSide },
/*0x4C0*/ { "SMSG_TALENTS_INFO", STATUS_NEVER, &WorldSession::Handle_ServerSide },
/*0x4C1*/ { "CMSG_LEARN_PREVIEW_TALENTS", STATUS_LOGGEDIN, &WorldSession::HandleLearnPreviewTalents },
/*0x4C2*/ { "CMSG_LEARN_PREVIEW_TALENTS_PET", STATUS_LOGGEDIN, &WorldSession::HandleLearnPreviewTalentsPet },
diff --git a/src/game/Opcodes.h b/src/game/Opcodes.h
index 243982e60f2..4ae6931c3f5 100644
--- a/src/game/Opcodes.h
+++ b/src/game/Opcodes.h
@@ -1250,8 +1250,8 @@ enum Opcodes
SMSG_CALENDAR_ACTION_PENDING = 0x4BB, // SMSG, calendar related EVENT_CALENDAR_ACTION_PENDING
SMSG_EQUIPMENT_SET_LIST = 0x4BC, // SMSG, equipment manager list?
CMSG_EQUIPMENT_SET_SAVE = 0x4BD, // CMSG, lua: SaveEquipmentSet
- CMSG_UNKNOWN_1214 = 0x4BE, // CMSG, missle?
- SMSG_UNKNOWN_1215 = 0x4BF, // SMSG, uint64, uint8, 3 x float
+ CMSG_UPDATE_PROJECTILE_POSITION = 0x4BE, // CMSG, uint64 caster, uint32 spellId, uint8 castId, vector3 position
+ SMSG_SET_PROJECTILE_POSITION = 0x4BF, // SMSG, uint64 caster, uint8 castId, vector3 position
SMSG_TALENTS_INFO = 0x4C0, // SMSG, talents related
CMSG_LEARN_PREVIEW_TALENTS = 0x4C1, // CMSG, lua: LearnPreviewTalents (for player?)
CMSG_LEARN_PREVIEW_TALENTS_PET = 0x4C2, // CMSG, lua: LearnPreviewTalents (for pet?)