From 871c0b47cb9d5b58ac6078025a2b9dd8a9398ba2 Mon Sep 17 00:00:00 2001 From: Mohammad Shoaib Khan Date: Sat, 11 Feb 2023 15:01:23 +0530 Subject: [PATCH] Added offset to bulletin board junimo bundle this will potentially fix the issue of the tile not being accessible by the path finder --- stardew-access/Features/TileInfo.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stardew-access/Features/TileInfo.cs b/stardew-access/Features/TileInfo.cs index 8c1dfa6..53dff70 100644 --- a/stardew-access/Features/TileInfo.cs +++ b/stardew-access/Features/TileInfo.cs @@ -261,7 +261,7 @@ namespace stardew_access.Features (40, 10) => "Fish Tank", (63, 14) => "Boiler Room", (55, 6) => "Vault", - (46, 11) => "Bulletin Board", + (46, 12) => "Bulletin Board", _ => null, }; if (name != null && communityCenter.shouldNoteAppearInArea(CommunityCenter.getAreaNumberFromName(name))) @@ -1324,4 +1324,4 @@ namespace stardew_access.Features } } -} \ No newline at end of file +}