[Quest API] Add getinventoryslotname(slot_id) to Perl/Lua. (#1406)

- Add quest::getinventoryslotname(slot_id) to Perl.
- Add eq.get_inventory_slot_name(slot_id) to Lua.

Co-authored-by: Chris Miles <akkadius1@gmail.com>
This commit is contained in:
Alex
2021-06-16 11:42:06 -04:00
committed by GitHub
parent f1d1731fc7
commit ed6e53be54
4 changed files with 28 additions and 0 deletions
+4
View File
@@ -4624,3 +4624,7 @@ void QuestManager::CrossZoneLDoNUpdate(uint8 type, uint8 subtype, int identifier
worldserver.SendPacket(pack);
safe_delete(pack);
}
std::string QuestManager::getinventoryslotname(int16 slot_id) {
return EQ::invslot::GetInvPossessionsSlotName(slot_id);
}