Skip to content

Commit

Permalink
fix: ensure isPodium check works correctly (opentibiabr#3221)
Browse files Browse the repository at this point in the history
  • Loading branch information
omarcopires authored and vllworldbuilding committed Jan 10, 2025
1 parent c5afb81 commit 7cd40c5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/lua/functions/items/item_type_functions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ void ItemTypeFunctions::init(lua_State* L) {
Lua::registerMethod(L, "ItemType", "isPickupable", ItemTypeFunctions::luaItemTypeIsPickupable);
Lua::registerMethod(L, "ItemType", "isKey", ItemTypeFunctions::luaItemTypeIsKey);
Lua::registerMethod(L, "ItemType", "isQuiver", ItemTypeFunctions::luaItemTypeIsQuiver);
Lua::registerMethod(L, "ItemType", "isPodium", ItemTypeFunctions::luaItemTypeIsPodium);

Lua::registerMethod(L, "ItemType", "getType", ItemTypeFunctions::luaItemTypeGetType);
Lua::registerMethod(L, "ItemType", "getId", ItemTypeFunctions::luaItemTypeGetId);
Expand Down

0 comments on commit 7cd40c5

Please sign in to comment.