Jump to content

syncrosised

Members
  • Posts

    10
  • Joined

  • Last visited

  • Donations

    0.00 GBP 

Bug Comments posted by syncrosised

  1. I managed to get this fixed. (with the help of Olion)

    PS: i dont know how to add this to the main source.

    In Pet.cpp
    Replace:
    case CORPSE:
    {
    Unsummon(PET_SAVE_NOT_IN_SLOT);
    break;
    }


    With:
    case CORPSE:
    {
    if (getPetType() != HUNTER_PET || m_corpseRemoveTime {
    Unsummon(PET_SAVE_NOT_IN_SLOT); //hunters' pets never get removed because of death, NEVER!
    return;
    }
    break;
    }

×
×
  • 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