diff options
Diffstat (limited to 'src/game/Object.cpp')
-rw-r--r-- | src/game/Object.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/game/Object.cpp b/src/game/Object.cpp index f3cff243e93..0c8c215d09a 100644 --- a/src/game/Object.cpp +++ b/src/game/Object.cpp @@ -240,9 +240,6 @@ void Object::BuildUpdate(UpdateDataMapType &update_players) void Object::SendUpdateToPlayer(Player* player) { - // send update to another players - SendUpdateObjectToAllExcept(player); - // send create update to player UpdateData upd; WorldPacket packet; @@ -1108,6 +1105,7 @@ WorldObject::WorldObject() , m_zoneScript(NULL) , m_isActive(false), m_isWorldObject(false) , m_name("") + , m_notifyflags(0), m_executed_notifies(0) { } |