Skip to content

Commit

Permalink
[2071] Fix Typos
Browse files Browse the repository at this point in the history
* Fix Typo in Scholo, introduced in Rev [2070]
* Fix Typo in Dire Maul, thanks to Xfurry for pointing

Signed-off-by: Schmoozerd <schmoozerd@scriptdev2.com>
  • Loading branch information
Schmoozerd committed May 5, 2011
1 parent ad1c38c commit 9182014
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion scripts/eastern_kingdoms/scholomance/scholomance.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ struct GandlingEventData
GandlingEventData() : m_bIsActive(false), m_uiDoorGUID(0) {}
bool m_bIsActive;
uint64 m_uiDoorGUID;
std::set<uint64> m_sAddGuids;
std::set<uint32> m_sAddGuids;
};

static const uint32 aGandlingEvents[MAX_EVENTS] = {EVENT_ID_POLKELT, EVENT_ID_THEOLEN, EVENT_ID_MALICIA, EVENT_ID_ILLUCIA, EVENT_ID_BAROV, EVENT_ID_RAVENIAN};
Expand Down
4 changes: 2 additions & 2 deletions scripts/kalimdor/dire_maul/instance_dire_maul.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ void instance_dire_maul::OnObjectCreate(GameObject* pGo)
// East
case GO_CRUMBLE_WALL:
m_uiCrumbleWallGUID = pGo->GetGUID();
if (m_bWallDestroyed)
if (m_bWallDestroyed || m_auiEncounter[TYPE_ALZZIN] == DONE)
pGo->SetGoState(GO_STATE_ACTIVE);
break;
case GO_CORRUPT_VINE:
Expand Down Expand Up @@ -225,7 +225,7 @@ void instance_dire_maul::SetData(uint32 uiType, uint32 uiData)
break;
}

if (uiData >= DONE)
if (uiData == DONE)
{
OUT_SAVE_INST_DATA;

Expand Down
2 changes: 1 addition & 1 deletion sd2_revision_nr.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#ifndef __SD2_REVISION_NR_H__
#define __SD2_REVISION_NR_H__
#define SD2_REVISION_NR "2070"
#define SD2_REVISION_NR "2071"
#endif // __SD2_REVISION_NR_H__

0 comments on commit 9182014

Please sign in to comment.