mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-14 07:21:48 +00:00
Forgot ST_SummonedPet
This commit is contained in:
parent
5eba112b7a
commit
6bdcfaaa71
@ -1204,7 +1204,7 @@ void Client::ActivateAlternateAdvancementAbility(int rank_id, int target_id) {
|
|||||||
}
|
}
|
||||||
//
|
//
|
||||||
// Modern clients don't require pet targeted for AA casts that are ST_Pet
|
// Modern clients don't require pet targeted for AA casts that are ST_Pet
|
||||||
if (spells[rank->spell].targettype == ST_Pet)
|
if (spells[rank->spell].targettype == ST_Pet || spells[rank->spell].targettype == ST_SummonedPet)
|
||||||
target_id = GetPetID();
|
target_id = GetPetID();
|
||||||
|
|
||||||
// Bards can cast instant cast AAs while they are casting another song
|
// Bards can cast instant cast AAs while they are casting another song
|
||||||
|
|||||||
@ -8607,7 +8607,7 @@ void Client::Handle_OP_ItemVerifyRequest(const EQApplicationPacket *app)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Modern clients don't require pet targeted for item clicks that are ST_Pet
|
// Modern clients don't require pet targeted for item clicks that are ST_Pet
|
||||||
if (spell_id > 0 && spells[spell_id].targettype == ST_Pet)
|
if (spell_id > 0 && (spells[spell_id].targettype == ST_Pet || spells[spell_id].targettype == ST_SummonedPet))
|
||||||
target_id = GetPetID();
|
target_id = GetPetID();
|
||||||
|
|
||||||
Log(Logs::General, Logs::None, "OP ItemVerifyRequest: spell=%i, target=%i, inv=%i", spell_id, target_id, slot_id);
|
Log(Logs::General, Logs::None, "OP ItemVerifyRequest: spell=%i, target=%i, inv=%i", spell_id, target_id, slot_id);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user