Expanded the detection of shipping bin in island

master
Mohammad Shoaib Khan 2023-02-19 22:35:57 +05:30
parent 9af30890bc
commit 34d773204c
No known key found for this signature in database
GPG Key ID: D8040D966320B620
1 changed files with 1 additions and 1 deletions

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)