[Quest API] Add GetAugmentIDs() to Perl/Lua (#4114)

# Perl
- Add `$questitem->GetAugmentIDs()`.

# Lua
- Add `iteminst:GetAugmentIDs()`.

# Notes
- Allows operators to get a list of augment IDs from an item instance directly without using the inventory method.
This commit is contained in:
Alex King
2024-02-24 23:52:07 -05:00
committed by GitHub
parent a478fd2600
commit 29720f95ed
5 changed files with 49 additions and 0 deletions
+1
View File
@@ -89,6 +89,7 @@ public:
std::string GetName();
void ItemSay(const char* text);
void ItemSay(const char* text, uint8 language_id);
luabind::object GetAugmentIDs(lua_State* L);
private:
bool cloned_;