mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-16 18:52:22 +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
@@ -1908,9 +1908,9 @@ void Perl_Mob_TempName(Mob* self, const char* name) // @categories Script Utilit
|
||||
self->TempName(name);
|
||||
}
|
||||
|
||||
int Perl_Mob_GetItemStat(Mob* self, uint32 item_id, const char* stat) // @categories Inventory and Items, Stats and Attributes
|
||||
const int Perl_Mob_GetItemStat(Mob* self, uint32 item_id, std::string identifier) // @categories Inventory and Items, Stats and Attributes
|
||||
{
|
||||
return self->GetItemStat(item_id, stat);
|
||||
return self->GetItemStat(item_id, identifier);
|
||||
}
|
||||
|
||||
std::string Perl_Mob_GetGlobal(Mob* self, const char* varname)
|
||||
|
||||
Reference in New Issue
Block a user