mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-22 16:28:28 +00:00
[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:
+2
-2
@@ -3633,9 +3633,9 @@ std::string QuestManager::getinventoryslotname(int16 slot_id) {
|
||||
return EQ::invslot::GetInvPossessionsSlotName(slot_id);
|
||||
}
|
||||
|
||||
int QuestManager::getitemstat(uint32 item_id, std::string stat_identifier) {
|
||||
const int QuestManager::getitemstat(uint32 item_id, std::string stat_identifier) {
|
||||
QuestManagerCurrentQuestVars();
|
||||
return EQ::InventoryProfile::GetItemStatValue(item_id, stat_identifier.c_str());
|
||||
return EQ::InventoryProfile::GetItemStatValue(item_id, stat_identifier);
|
||||
}
|
||||
|
||||
int QuestManager::getspellstat(uint32 spell_id, std::string stat_identifier, uint8 slot) {
|
||||
|
||||
Reference in New Issue
Block a user