Core/Spells: Allow removing same npc entry multiple times for AuraType.LinkedSummon if it's from different effects of the same spell

Core/Maps: Allow entering raid maps without a raid group for maps older than current expansion
This commit is contained in:
hondacrx
2018-05-22 11:34:16 -04:00
parent 90751a6a28
commit 43d49f9e9b
2 changed files with 3 additions and 5 deletions
+2 -4
View File
@@ -6049,10 +6049,8 @@ namespace Game.Spells
{
uint summonEntry = (uint)spellEffect.MiscValue;
if (summonEntry != 0)
{
if (!summonedEntries.Contains(summonEntry))
summonedEntries.Add(summonEntry);
}
summonedEntries.Add(summonEntry);
}
}