Added diggable golden walnut locations to ginger Island tileInfo.
parent
f9fbbc4181
commit
43c3dbb0d8
|
@ -430,6 +430,13 @@ namespace stardew_access.Features
|
|||
else if (x == 8 && y == 9)
|
||||
return (((!Game1.MasterPlayer.hasOrWillReceiveMail("willyBoatAnchor")) ? CATEGORY.Interactables : CATEGORY.Decor), ((!Game1.MasterPlayer.hasOrWillReceiveMail("willyBoatAnchor")) ? "Repair " : "") + "Boat Anchor");
|
||||
}
|
||||
else if (Game1.currentLocation is IslandLocation islandLocation)
|
||||
{
|
||||
var nutTracker = Game1.player.team.collectedNutTracker;
|
||||
if (islandLocation.IsBuriedNutLocation(new Point(x, y)) && !nutTracker.ContainsKey("Buried_" + islandLocation.Name + "_" + x + "_" + y))
|
||||
{
|
||||
return (CATEGORY.Interactables, "Diggable spot");
|
||||
}
|
||||
else if (Game1.currentLocation is IslandWest islandWest)
|
||||
{
|
||||
if (islandWest.shippingBinPosition.X == x && islandWest.shippingBinPosition.Y == y)
|
||||
|
@ -440,7 +447,7 @@ namespace stardew_access.Features
|
|||
if (islandNorth.traderActivated.Value && x == 36 && y == 71)
|
||||
return (CATEGORY.Interactables, "Island Trader");
|
||||
}
|
||||
|
||||
}
|
||||
return (null, null);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue