Expanded the detection of shipping bin in island

This commit is contained in:
Mohammad Shoaib Khan
2023-02-19 22:35:57 +05:30
parent 9af30890bc
commit 34d773204c

View File

@@ -524,7 +524,7 @@ namespace stardew_access.Features
}
else if (Game1.currentLocation is IslandWest islandWest)
{
if (islandWest.shippingBinPosition.X == x && islandWest.shippingBinPosition.Y == y)
if ((islandWest.shippingBinPosition.X == x || (islandWest.shippingBinPosition.X + 1) == x) && islandWest.shippingBinPosition.Y == y)
return (CATEGORY.Interactables, "Shipping Bin");
}
else if (Game1.currentLocation is IslandNorth islandNorth)