Added missed rewards bundle to read tile

This commit is contained in:
Mohammad Shoaib
2022-04-29 19:46:26 +05:30
parent 2dbc52a994
commit c4290173fd

View File

@@ -336,6 +336,11 @@ namespace stardew_access.Features
return (CATEGORY.Bridges, "Bridge");
}
}
else if (Game1.currentLocation is CommunityCenter communityCenter)
{
if (communityCenter.missedRewardsChestVisible.Value && x == 22 && y == 10)
return (CATEGORY.Chests, "Missed Rewards Chest");
}
return (null, null);
}