Jump to content

madmax

Community Manager
  • Posts

    2034
  • Joined

  • Last visited

  • Days Won

    71
  • Donations

    0.00 GBP 

Bug Comments posted by madmax

  1. Antz applied a code change to Covenant-WoW to see if this fixes it, it is as follows:

    File Object.h


    bool IsInMap(const WorldObject* obj) const
    {
    return IsInWorld() && obj->IsInWorld() && (GetMap() == obj->GetMap());
    }


    to
    bool IsInMap(const WorldObject* obj) const
    {
    if (m_currMap)
    {
    return IsInWorld() && obj->IsInWorld() && (GetMap() == obj->GetMap());
    }
    else
    {
    return false;
    }
    }

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use