mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-17 18:41:29 +00:00
[Corpses] Corpse searches for items did not search augs (#4289)
This commit is contained in:
parent
1529c0f670
commit
37e21d7757
@ -4820,6 +4820,11 @@ bool Client::HasItemOnCorpse(uint32 item_id)
|
|||||||
if (item.item_id == item_id) {
|
if (item.item_id == item_id) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
if (item.aug_1 == item_id || item.aug_2 == item_id ||
|
||||||
|
item.aug_3 == item_id || item.aug_4 == item_id ||
|
||||||
|
item.aug_5 == item_id || item.aug_6 == item_id) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user