[Quest API] Add Augment Slot support to does_augment_fit (#2813)

* [Quest API] Add Augment Slot support to does_augment_fit

# Notes
- Allows you to check if the supplied augment ID fits in the specified augment slot of the item instance provided.

* Update item_instance.cpp
This commit is contained in:
Alex King
2023-01-30 21:18:16 -05:00
committed by GitHub
parent a25952910a
commit 040c092795
6 changed files with 42 additions and 11 deletions
+1 -1
View File
@@ -346,7 +346,7 @@ public:
std::string GetRecipeName(uint32 recipe_id);
bool HasRecipeLearned(uint32 recipe_id);
bool DoAugmentSlotsMatch(uint32 item_one, uint32 item_two);
int8 DoesAugmentFit(EQ::ItemInstance* inst, uint32 augment_id);
int8 DoesAugmentFit(EQ::ItemInstance* inst, uint32 augment_id, uint8 augment_slot = 255);
Bot *GetBot() const;
Client *GetInitiator() const;