diff options
Diffstat (limited to 'src/game/ObjectMgr.h')
-rw-r--r-- | src/game/ObjectMgr.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/game/ObjectMgr.h b/src/game/ObjectMgr.h index a3c39f18fc9..6624cc7e76d 100644 --- a/src/game/ObjectMgr.h +++ b/src/game/ObjectMgr.h @@ -106,9 +106,12 @@ struct SpellClickInfo uint32 questEnd; // quest end (quest don't must be rewarded for spell apply) bool questStartCanActive; // if true then quest start can be active (not only rewarded) uint8 castFlags; + uint32 auraRequired; + uint32 auraForbidden; + SpellClickUserTypes userType; // helpers - bool IsFitToRequirements(Player const* player) const; + bool IsFitToRequirements(Player const* player, Creature const * clickNpc) const; }; typedef std::multimap<uint32, SpellClickInfo> SpellClickInfoMap; |