diff options
Diffstat (limited to 'src/server/game/Instances/InstanceScript.h')
| -rwxr-xr-x | src/server/game/Instances/InstanceScript.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/server/game/Instances/InstanceScript.h b/src/server/game/Instances/InstanceScript.h index 652c29fbf2f..5e293eee0ca 100755 --- a/src/server/game/Instances/InstanceScript.h +++ b/src/server/game/Instances/InstanceScript.h @@ -196,6 +196,10 @@ class InstanceScript : public ZoneScript // Checks boss requirements (one boss required to kill other) virtual bool CheckRequiredBosses(uint32 /*bossId*/, Player const* /*player*/ = NULL) const { return true; } + // Returns completed encounters mask for packets + // NOTE: MUST USE ENCOUNTER IDS FROM DungeonEncounter.dbc 4th column + virtual uint32 GetCompletedEncounterMask() const { return 0; } + void SendEncounterUnit(uint32 type, Unit* unit = NULL, uint8 param1 = 0, uint8 param2 = 0); protected: |
