[7593] Map::EnsureGridLoaded related cleanups and fixes: Author: VladimirMangos

* Make generic EnsureGridLoaded function and move specialized code to LoadGrid and EnsureGridLoadedAtEnter
    * Rename args to gx/gy for low-level grid numbering values.
    * Remove redundent LoadMpa call after always case loading maps in EnsureGridCreated

--HG--
branch : trunk
This commit is contained in:
megamage
2009-04-02 16:33:35 -06:00
parent 2ea4fab57f
commit 4ca04684f2
4 changed files with 71 additions and 61 deletions

View File

@@ -1865,13 +1865,11 @@ void Spell::EffectDummy(uint32 i)
if(unitTarget->GetCreatureType() != CREATURE_TYPE_UNDEAD)
return;
// first rank have special multiplier
int32 bp = damage * 1.5f;
m_caster->CastCustomSpell(unitTarget,47633,&bp,NULL,NULL,true);
}
else
{
// first rank have special multiplier
int32 bp = damage;
m_caster->CastCustomSpell(unitTarget,47632,&bp,NULL,NULL,true);
}