[Quest API] Add Augment Slot Type/Visible to GetItemStat (#2686)

* [Quest API] Add Augment Slot Type/Visible to GetItemStat

# Notes
- Adds the ability to get an item's augment slot types and augment slot visibility information.

* const
This commit is contained in:
Alex King
2023-01-01 11:35:15 -05:00
committed by GitHub
parent 3a4ba6f422
commit 1531650b3a
11 changed files with 371 additions and 348 deletions
+2 -2
View File
@@ -2012,8 +2012,8 @@ std::string lua_get_data_remaining(std::string bucket_name) {
return DataBucket::GetDataRemaining(bucket_name);
}
int lua_get_item_stat(uint32 item_id, std::string stat_identifier) {
return quest_manager.getitemstat(item_id, stat_identifier);
const int lua_get_item_stat(uint32 item_id, std::string identifier) {
return quest_manager.getitemstat(item_id, identifier);
}
int lua_get_spell_stat(uint32 spell_id, std::string stat_identifier) {