aboutsummaryrefslogtreecommitdiff
path: root/src/game/InstanceData.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/InstanceData.h')
-rw-r--r--src/game/InstanceData.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game/InstanceData.h b/src/game/InstanceData.h
index d06043ff07d..90be75fa5da 100644
--- a/src/game/InstanceData.h
+++ b/src/game/InstanceData.h
@@ -149,6 +149,9 @@ class TRINITY_DLL_SPEC InstanceData : public ZoneScript
//Respawns a GO having negative spawntimesecs in gameobject-table
void DoRespawnGameObject(uint64 uiGuid, uint32 uiTimeToDespawn = MINUTE);
+ //sends world state update to all players in instance
+ void DoUpdateWorldState(uint32 uiStateId, uint32 uiStateData);
+
virtual bool SetBossState(uint32 id, EncounterState state);
EncounterState GetBossState(uint32 id) const { return id < bosses.size() ? bosses[id].state : TO_BE_DECIDED; }
const BossBoundaryMap * GetBossBoundary(uint32 id) const { return id < bosses.size() ? &bosses[id].boundary : NULL; }