DB/CreatureImmunities: Difference between revisions

From wowdev
Jump to navigation Jump to search
m (add full and correct info for 6.0.1.18179)
mNo edit summary
Line 2: Line 2:
==6.0.1.18179==
==6.0.1.18179==
  struct CreatureImmunitiesRec {
  struct CreatureImmunitiesRec {
   int m_ID;
   uint32_t m_ID;
   int m_school;
   uint32_t m_school;
   int m_dispelType;
   uint32_t m_dispelType;
   int m_mechanicsAllowed;
   uint32_t m_mechanicsAllowed;
   int m_mechanic;
   uint32_t m_mechanic;
   int m_effectsAllowed;
   uint32_t m_effectsAllowed;
   int m_effect[7];
   uint32_t m_effect[7];
   int m_statesAllowed;
   uint32_t m_statesAllowed;
   int m_state[15];
   uint32_t m_state[15];
   int m_flags;
   uint32_t m_flags;
  };
  };
[[Category:DBC]]
[[Category:DBC]]

Revision as of 20:19, 2 November 2014

new in cataclysm

6.0.1.18179

struct CreatureImmunitiesRec {
  uint32_t m_ID;
  uint32_t m_school;
  uint32_t m_dispelType;
  uint32_t m_mechanicsAllowed;
  uint32_t m_mechanic;
  uint32_t m_effectsAllowed;
  uint32_t m_effect[7];
  uint32_t m_statesAllowed;
  uint32_t m_state[15];
  uint32_t m_flags;
};