Expanded the detection of shipping bin in island
parent
9af30890bc
commit
34d773204c
|
@ -524,7 +524,7 @@ namespace stardew_access.Features
|
||||||
}
|
}
|
||||||
else if (Game1.currentLocation is IslandWest islandWest)
|
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");
|
return (CATEGORY.Interactables, "Shipping Bin");
|
||||||
}
|
}
|
||||||
else if (Game1.currentLocation is IslandNorth islandNorth)
|
else if (Game1.currentLocation is IslandNorth islandNorth)
|
||||||
|
|
Loading…
Reference in New Issue