diff options
author | kaelima <kaelima@live.se> | 2012-03-16 23:45:35 +0100 |
---|---|---|
committer | kaelima <kaelima@live.se> | 2012-03-16 23:46:13 +0100 |
commit | 6d95e2408ab46c4e245c821fdd71f3ce94c96f49 (patch) | |
tree | 8dd00f2ae87e2898ed7a9fab725cdb3a6abe6bf9 /src | |
parent | cf5ed0a7b6f5597f9103a4bc93ed91f814522a77 (diff) |
Core/Protocol: And correct the struct of SMSG_UPDATE_INSTANCE_ENCOUNTER_UNIT...
Diffstat (limited to 'src')
-rwxr-xr-x | src/server/game/Instances/InstanceScript.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Instances/InstanceScript.cpp b/src/server/game/Instances/InstanceScript.cpp index 6b0431aae83..d2c256e08f7 100755 --- a/src/server/game/Instances/InstanceScript.cpp +++ b/src/server/game/Instances/InstanceScript.cpp @@ -407,10 +407,10 @@ void InstanceScript::SendEncounterUnit(uint32 type, Unit* unit /*= NULL*/, uint8 case ENCOUNTER_FRAME_ENABLE_OBJECTIVE: case ENCOUNTER_FRAME_DISABLE_OBJECTIVE: data << uint8(param1); - data << uint8(param2); break; case ENCOUNTER_FRAME_UPDATE_OBJECTIVE: data << uint8(param1); + data << uint8(param2); break; case ENCOUNTER_FRAME_UNK7: default: |