diff options
Diffstat (limited to 'src/game/ObjectMgr.h')
-rw-r--r-- | src/game/ObjectMgr.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/game/ObjectMgr.h b/src/game/ObjectMgr.h index 19a3f07a359..f76cc232e57 100644 --- a/src/game/ObjectMgr.h +++ b/src/game/ObjectMgr.h @@ -689,6 +689,10 @@ class ObjectMgr static bool CheckDeclinedNames(std::wstring mainpart, DeclinedName const& names); + void LoadSpellDisabledEntrys(); + bool IsPlayerSpellDisabled(uint32 spellid) { return (m_DisabledPlayerSpells.count(spellid) != 0); } + bool IsCreatureSpellDisabled(uint32 spellid) { return (m_DisabledCreatureSpells.count(spellid) != 0); } + int GetIndexForLocale(LocaleConstant loc); LocaleConstant GetLocaleForIndex(int i); // guild bank tabs @@ -798,6 +802,9 @@ class ObjectMgr typedef std::set<std::string> ReservedNamesMap; ReservedNamesMap m_ReservedNames; + std::set<uint32> m_DisabledPlayerSpells; + std::set<uint32> m_DisabledCreatureSpells; + GraveYardMap mGraveYardMap; GameTeleMap m_GameTeleMap; |