diff --git a/stardew-access/Features/TileInfo.cs b/stardew-access/Features/TileInfo.cs index 169eb88..e01b56b 100644 --- a/stardew-access/Features/TileInfo.cs +++ b/stardew-access/Features/TileInfo.cs @@ -341,6 +341,15 @@ namespace stardew_access.Features if (communityCenter.missedRewardsChestVisible.Value && x == 22 && y == 10) return (CATEGORY.Chests, "Missed Rewards Chest"); } + else if (Game1.currentLocation is BoatTunnel) + { + if (x == 4 && y == 9) + return (CATEGORY.Interactables, ((!Game1.MasterPlayer.hasOrWillReceiveMail("willyBoatFixed")) ? "Repair " : "") + "Ticket Machine"); + else if (x == 6 && y == 8) + return (((!Game1.MasterPlayer.hasOrWillReceiveMail("willyBoatHull")) ? CATEGORY.Interactables : CATEGORY.Decor), ((!Game1.MasterPlayer.hasOrWillReceiveMail("willyBoatHull")) ? "Repair " : "") + "Boat Hull"); + else if (x == 8 && y == 9) + return (((!Game1.MasterPlayer.hasOrWillReceiveMail("willyBoatAnchor")) ? CATEGORY.Interactables : CATEGORY.Decor), ((!Game1.MasterPlayer.hasOrWillReceiveMail("willyBoatAnchor")) ? "Repair " : "") + "Boat Anchor"); + } return (null, null); } diff --git a/stardew-access/static-tiles.json b/stardew-access/static-tiles.json index bca0e91..fa05c02 100644 --- a/stardew-access/static-tiles.json +++ b/stardew-access/static-tiles.json @@ -853,5 +853,14 @@ "y":[35,36], "type":"decoration" } + }, + "fishshop": + { + "Shop Counter": + { + "x":[5], + "y":[5], + "type":"interactable" + } } } \ No newline at end of file