[Bug Fix] Fix Trading Items to Bot Pets (#4721)

Small change using IsPetOwnerOfClientBot() instead of just IsPetOwnerClient

Can bot pet take item?

not before, but hopefully now?
This commit is contained in:
MortimerGreenwald
2025-02-28 13:54:38 -08:00
committed by GitHub
parent 2f7ca2cdc8
commit cb634cf57d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -4315,7 +4315,7 @@ bool NPC::CanPetTakeItem(const EQ::ItemInstance *inst)
return false;
}
if (!IsPetOwnerClient() && !IsCharmedPet()) {
if (!IsPetOwnerOfClientBot() && !IsCharmedPet()) {
return false;
}