Core/Guilds: replace container type for guilds (use vector instead of map).

Scripts/Misc: remove another warning (I can't pass by such things and I don't want to make separate commit for such changes).

--HG--
branch : trunk
This commit is contained in:
azazel
2010-10-19 16:17:54 +06:00
parent a449a4020d
commit 64c1b6b465
3 changed files with 49 additions and 37 deletions

View File

@@ -1128,7 +1128,7 @@ class spell_putricide_mutated_plague : public SpellScriptLoader
multiplier = 3.0f;
damage *= int32(pow(multiplier, aurApp->GetBase()->GetStackAmount()));
damage *= 1.5;
damage = int32(damage * 1.5f);
aurApp->GetTarget()->CastCustomSpell(triggerSpell, SPELLVALUE_BASE_POINT0, damage, aurApp->GetTarget(), true, NULL, aurEff, GetCasterGUID());
}