Skip to content

Commit 6465aed

Browse files
committed
Update previous commit
(based on commit [3144] - 43fb004) Signed-off-by: Xfurry <[email protected]>
1 parent 95bf9c8 commit 6465aed

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

scripts/eastern_kingdoms/blackrock_mountain/blackrock_depths/blackrock_depths.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ struct npc_grimstoneAI : public npc_escortAI
352352
m_pInstance->DoUseDoorOrButton(GO_ARENA_4);
353353
// Some of the NPCs in the crowd do cheer emote at event start
354354
// we randomly select 25% of the NPCs to do this
355-
m_lArenaCrowd = m_pInstance->GetArenaCrowdGuid();
355+
m_pInstance->GetArenaCrowdGuid(m_lArenaCrowd);
356356
for (GuidSet::const_iterator itr = m_lArenaCrowd.begin(); itr != m_lArenaCrowd.end(); ++itr)
357357
{
358358
if (Creature* pSpectator = m_creature->GetMap()->GetCreature(*itr))

scripts/eastern_kingdoms/blackrock_mountain/blackrock_depths/blackrock_depths.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ class instance_blackrock_depths : public ScriptedInstance
179179
// Arena Event
180180
void SetArenaCenterCoords(float fX, float fY, float fZ) { m_fArenaCenterX = fX; m_fArenaCenterY = fY; m_fArenaCenterZ = fZ; }
181181
void GetArenaCenterCoords(float& fX, float& fY, float& fZ) { fX = m_fArenaCenterX; fY = m_fArenaCenterY; fZ = m_fArenaCenterZ; }
182-
GuidSet GetArenaCrowdGuid() { return m_sArenaCrowdNpcGuids; }
182+
void GetArenaCrowdGuid(GuidSet& sCrowdSet) { sCrowdSet = m_sArenaCrowdNpcGuids; }
183183

184184
private:
185185
void DoCallNextDwarf();

sd2_revision_nr.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#ifndef __SD2_REVISION_NR_H__
22
#define __SD2_REVISION_NR_H__
3-
#define SD2_REVISION_NR "3143"
3+
#define SD2_REVISION_NR "3144"
44
#endif // __SD2_REVISION_NR_H__

0 commit comments

Comments
 (0)