[12040] Add some comments to SummonProperty enums

This commit is contained in:
Schmoozerd 2012-07-15 02:00:06 +02:00
parent 8d558ee200
commit 6b50ce1f1a
2 changed files with 40 additions and 37 deletions

View file

@ -355,7 +355,8 @@ enum TotemCategoryType
TOTEM_CATEGORY_TYPE_SPANNER = 24
};
// SummonProperties.dbc, col 1
// SummonProperties.dbc, col 0 == Id (m_id)
// SummonProperties.dbc, col 1 == Group (m_control)
enum SummonPropGroup
{
SUMMON_PROP_GROUP_WILD = 0,
@ -365,7 +366,8 @@ enum SummonPropGroup
SUMMON_PROP_GROUP_VEHICLE = 4
};
// SummonProperties.dbc, col 3
// SummonProperties.dbc, col 2 == FactionId (m_faction)
// SummonProperties.dbc, col 3 == Title (m_title)
enum UnitNameSummonTitle
{
UNITNAME_SUMMON_TITLE_NONE = 0, // no default title, different summons, 1330 spells in 3.0.3
@ -383,7 +385,8 @@ enum UnitNameSummonTitle
UNITNAME_SUMMON_TITLE_BUTLER = 12 // 's Butler, summon repair bot, 1 spells in 3.2.2a
};
// SummonProperties.dbc, col 5
// SummonProperties.dbc, col 4 == Slot (m_slot)
// SummonProperties.dbc, col 5 == Flags (m_flags)
enum SummonPropFlags
{
SUMMON_PROP_FLAG_NONE = 0x0000, // 1342 spells in 3.0.3

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "12039"
#define REVISION_NR "12040"
#endif // __REVISION_NR_H__