diff --git a/Include/Core/Internal.hpp b/Include/Core/Internal.hpp index 37aa0e2..cb92e2c 100644 --- a/Include/Core/Internal.hpp +++ b/Include/Core/Internal.hpp @@ -248,6 +248,7 @@ namespace Internal std::int32_t GetVarbitSettings(std::int32_t VarbitSettingIndex); Point TileToMainscreen(const Tile& T, std::int32_t X, std::int32_t Y, std::int32_t Z); std::string GetItemName(std::int32_t ID); + bool IsItemPlaceholder(std::int32_t ID); std::vector GetBlockingWidgetBoxes(); std::int32_t GetHealthPercentage(const Internal::Character& C); std::vector GetWidgets(std::int32_t Container); diff --git a/Include/Game/Interfaces/Bank.hpp b/Include/Game/Interfaces/Bank.hpp index 113b745..90f4d54 100644 --- a/Include/Game/Interfaces/Bank.hpp +++ b/Include/Game/Interfaces/Bank.hpp @@ -77,13 +77,6 @@ class Bank static bool ContainsAny(const std::vector& Names); static bool ContainsAny(const std::vector& Items); - static bool ContainsOnly(std::int32_t ID); - static bool ContainsOnly(const std::string& Name); - static bool ContainsOnly(const Interactable::Item& Item); - static bool ContainsOnly(const std::vector& IDs); - static bool ContainsOnly(const std::vector& Names); - static bool ContainsOnly(const std::vector& Items); - static std::int32_t GetCurrentTab(); static std::int32_t GetTabOf(std::int32_t ID); static std::int32_t GetTabOf(const std::string& Name); diff --git a/Library/libAlpacaLibrary.a b/Library/libAlpacaLibrary.a index 1aac73e..79e9ccd 100644 Binary files a/Library/libAlpacaLibrary.a and b/Library/libAlpacaLibrary.a differ