diff options
author | kaelima <kaelima@live.se> | 2012-03-16 23:16:22 +0100 |
---|---|---|
committer | kaelima <kaelima@live.se> | 2012-03-16 23:16:49 +0100 |
commit | d810acdeeaf26c7430f63ee31c4d306c554bf072 (patch) | |
tree | 20f79ec4151df8a4828744d6642e9dc2e2ce63e2 /src/server/game/Instances/InstanceScript.cpp | |
parent | 6f031b814edf8ed10984d2f094f163fec47b40fc (diff) |
Core/InstanceScript: Encounterframe research - extended the EncounterFrameType enum
Diffstat (limited to 'src/server/game/Instances/InstanceScript.cpp')
-rwxr-xr-x | src/server/game/Instances/InstanceScript.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/server/game/Instances/InstanceScript.cpp b/src/server/game/Instances/InstanceScript.cpp index c6a93ff4272..6b0431aae83 100755 --- a/src/server/game/Instances/InstanceScript.cpp +++ b/src/server/game/Instances/InstanceScript.cpp @@ -397,22 +397,22 @@ void InstanceScript::SendEncounterUnit(uint32 type, Unit* unit /*= NULL*/, uint8 switch (type) { - case ENCOUNTER_FRAME_ADD: - case ENCOUNTER_FRAME_REMOVE: - case 2: + case ENCOUNTER_FRAME_ENGAGE: + case ENCOUNTER_FRAME_DISENGAGE: + case ENCOUNTER_FRAME_UPDATE_PRIORITY: data.append(unit->GetPackGUID()); data << uint8(param1); break; - case 3: - case 4: - case 6: + case ENCOUNTER_FRAME_ADD_TIMER: + case ENCOUNTER_FRAME_ENABLE_OBJECTIVE: + case ENCOUNTER_FRAME_DISABLE_OBJECTIVE: data << uint8(param1); data << uint8(param2); break; - case 5: + case ENCOUNTER_FRAME_UPDATE_OBJECTIVE: data << uint8(param1); break; - case 7: + case ENCOUNTER_FRAME_UNK7: default: break; } |