View Single Post
03-21-24, 02:28 PM   #1
Codger
An Aku'mai Servant
AddOn Author - Click to view addons
Join Date: Mar 2021
Posts: 30
10.2.6 API Changes to Item functions

Most of the item functions now require the use of the C_item namespace as noted here Warcraft Wiki - Patch_10.2.6 API changes

As an example:
previously: name = GetItemInventorySlotInfo(inventoryType);
10.2.6: name = C_Item.GetItemInventorySlotInfo(inventoryType);

Last edited by Codger : 03-21-24 at 02:31 PM.
  Reply With Quote