* Fix a crash in Culling of Stratholme

* Typo fix from previous rev

--HG--
branch : trunk
This commit is contained in:
Shocker
2010-08-25 03:53:43 +03:00
parent d3c6edeb4a
commit 4da71ac657
2 changed files with 5 additions and 9 deletions

View File

@@ -1477,7 +1477,7 @@ void Aura::HandleAuraSpecificMods(AuraApplication const * aurApp, Unit * caster,
if (unholyPresenceAura)
{
// Not listed as any effect, only base points set
int32 basePoints0 = SpellMgr::CalculateSpellEffectAmount(unholyPresenceAura->GetSpellProto(), 1)
int32 basePoints0 = SpellMgr::CalculateSpellEffectAmount(unholyPresenceAura->GetSpellProto(), 1);
target->CastCustomSpell(target,63622,&basePoints0 ,&basePoints0,&basePoints0,true,0,unholyPresenceAura);
target->CastCustomSpell(target,65095,&basePoints0 ,NULL,NULL,true,0,unholyPresenceAura);
}

View File

@@ -531,10 +531,8 @@ public:
break;
case 36:
if (pInstance)
{
GameObject* pGate = pInstance->instance->GetGameObject(pInstance->GetData64(DATA_SHKAF_GATE));
pGate->SetGoState(GO_STATE_ACTIVE);
}
if (GameObject* pGate = pInstance->instance->GetGameObject(pInstance->GetData64(DATA_SHKAF_GATE)))
pGate->SetGoState(GO_STATE_ACTIVE);
break;
case 45:
SetRun(true);
@@ -1128,10 +1126,8 @@ public:
pMalganis->SetReactState(REACT_PASSIVE);
}
if (pInstance)
{
GameObject* pGate = pInstance->instance->GetGameObject(pInstance->GetData64(DATA_MAL_GANIS_GATE_1));
pGate->SetGoState(GO_STATE_ACTIVE);
}
if (GameObject* pGate = pInstance->instance->GetGameObject(pInstance->GetData64(DATA_MAL_GANIS_GATE_1)))
pGate->SetGoState(GO_STATE_ACTIVE);
SetHoldState(false);
bStepping = false;
JumpToNextStep(0);