mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-02-15 08:16:08 +00:00
fix(Core): Memleaks fixes - Part II. (#5760)
This commit is contained in:
@@ -342,12 +342,14 @@ enum SpellImmuneBlockType
|
||||
|
||||
struct SpellImmune
|
||||
{
|
||||
SpellImmune() : spellId(0), type(IMMUNITY_EFFECT), blockType(SPELL_BLOCK_TYPE_ALL) { }
|
||||
|
||||
uint32 spellId;
|
||||
uint32 type : 16;
|
||||
uint32 blockType : 16;
|
||||
uint32 type;
|
||||
uint32 blockType;
|
||||
};
|
||||
|
||||
typedef std::list<SpellImmune> SpellImmuneList;
|
||||
typedef std::vector<SpellImmune> SpellImmuneList;
|
||||
|
||||
enum UnitModifierType
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user