diff options
author | megamage <none@none> | 2009-05-31 21:04:04 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-05-31 21:04:04 -0500 |
commit | 76e4dfe8dda50e61dd2ca5a9a241f14d8823cfeb (patch) | |
tree | c0975adb9df19c04f2cd26baa17ba1cff3760139 /src/game/Object.h | |
parent | 5034078d49f9a29d9a7e7d891b12d1706ddab44a (diff) |
*Store creatureData and goData for creatures and gos.
--HG--
branch : trunk
Diffstat (limited to 'src/game/Object.h')
-rw-r--r-- | src/game/Object.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/game/Object.h b/src/game/Object.h index d710e34ef36..50533e4a509 100644 --- a/src/game/Object.h +++ b/src/game/Object.h @@ -548,7 +548,6 @@ class TRINITY_DLL_SPEC WorldObject : public Object bool isActiveObject() const { return m_isActive; } void setActive(bool isActiveObject); - void SetInternallyAdded() { m_isInternallyAdded = true; } void SetWorldObject(bool apply); template<class NOTIFIER> void VisitNearbyObject(const float &radius, NOTIFIER ¬ifier) const { GetMap()->VisitAll(GetPositionX(), GetPositionY(), radius, notifier); } template<class NOTIFIER> void VisitNearbyGridObject(const float &radius, NOTIFIER ¬ifier) const { GetMap()->VisitGrid(GetPositionX(), GetPositionY(), radius, notifier); } @@ -567,7 +566,6 @@ class TRINITY_DLL_SPEC WorldObject : public Object explicit WorldObject(); std::string m_name; bool m_isActive; - bool m_isInternallyAdded; ZoneScript *m_zoneScript; private: |