Core/InstanceScript: Encounterframe research - extended the EncounterFrameType enum

This commit is contained in:
kaelima
2012-03-16 23:16:22 +01:00
parent 6f031b814e
commit d810acdeea
4 changed files with 30 additions and 24 deletions

View File

@@ -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;
}