Skip to content

Commit

Permalink
Merge pull request #13 from Olion17/develop21
Browse files Browse the repository at this point in the history
[SD2] Minor syntax correction
  • Loading branch information
Foereaper committed Apr 19, 2015
2 parents 753b073 + 211f7b1 commit 04c969a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -130,7 +130,7 @@ struct boss_thermaplugg : public CreatureScript
void Aggro(Unit* /*pWho*/) override
{
//copy faces GUIDs from instance script; BombFaces are fully controlled by this AI
uint32 faces[MAX_GNOME_FACES] {GO_GNOME_FACE_1, GO_GNOME_FACE_2, GO_GNOME_FACE_3, GO_GNOME_FACE_4, GO_GNOME_FACE_5, GO_GNOME_FACE_6};
uint32 faces[MAX_GNOME_FACES] = {GO_GNOME_FACE_1, GO_GNOME_FACE_2, GO_GNOME_FACE_3, GO_GNOME_FACE_4, GO_GNOME_FACE_5, GO_GNOME_FACE_6};
for (int i = 0; i < MAX_GNOME_FACES; ++i)
{
m_asBombFaces[i].m_gnomeFaceGuid = ObjectGuid(m_pInstance->GetData64(faces[i]));
Expand Down

0 comments on commit 04c969a

Please sign in to comment.