Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -251,14 +251,14 @@ else if (Arrays.stream(getShopContainerIds()).anyMatch(sid -> Objects.equals(eve
}

/**
* Retrieves all currently open container IDs from {@link net.runelite.api.gameval.InventoryID}
* Retrieves all currently open container IDs from {@link InventoryID}
* and excludes specific container IDs.
*
* @return an array of open container IDs excluding the specified excluded IDs
*/
private int[] getShopContainerIds()
{
Field[] fields = net.runelite.api.gameval.InventoryID.class.getFields();
Field[] fields = InventoryID.class.getFields();
List<Integer> openContainerIds = new ArrayList<>();
int[] excludedIds = { 90, 93, 94, 95 };

Expand Down Expand Up @@ -593,7 +593,7 @@ private void shutdownCacheSystem() {
}
/**
* Dynamically checks if any visible widget overlaps with the specified bounds
* @param overlayBounds The bounds to check for widget overlap
* @param overlayBoundsCanvas The bounds to check for widget overlap
* @return true if any visible widget overlaps with the specified bounds
*/
public boolean hasWidgetOverlapWithBounds(Rectangle overlayBoundsCanvas) {
Expand Down