Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
xfurry committed Sep 10, 2016
1 parent e3a0a0e commit 2d9d12b
Showing 1 changed file with 5 additions and 2 deletions.
Expand Up @@ -36,15 +36,18 @@ instance_stratholme::instance_stratholme(Map* pMap) : ScriptedInstance(pMap),
m_uiPostboxesUsed(0),
m_uiSilverHandKilled(0),
m_uiAuriusSummonTimer(0),
m_bIsSlaughterDoorOpen(false),
m_uiGateTrapTimers{{0,0,0},{0,0,0}}
m_bIsSlaughterDoorOpen(false)
{
Initialize();
}

void instance_stratholme::Initialize()
{
memset(&m_auiEncounter, 0, sizeof(m_auiEncounter));

for (uint8 i = 0; i < 2; ++i)
for (uint8 j = 0; j < 3; ++j)
m_uiGateTrapTimers[i][j] = 0;
}

void instance_stratholme::OnPlayerEnter(Player* pPlayer)
Expand Down

0 comments on commit 2d9d12b

Please sign in to comment.