I've narrowed it down to this function:
let curEquip := (curNPC.getEquipmentSlotMask itemMask)
itemMask will always be a power of 2, meaning I will only check one slot at a time. The problem is, this always returns 0. No matter what.
Basically, I want to be able to, if I search for something equipped on the hand, I will get the item on the hand, whether or not that item takes up other slots or not.