diff --git a/stardew-access/Features/ReadTile.cs b/stardew-access/Features/ReadTile.cs index 1673e65..0ab8422 100644 --- a/stardew-access/Features/ReadTile.cs +++ b/stardew-access/Features/ReadTile.cs @@ -902,15 +902,18 @@ namespace stardew_access.Features public static string? getStumpsInWoods(int x, int y) { if (Game1.currentLocation is not Woods) - { return null; + + if ((x == 8 || x == 9) && y == 7) + { + return "Old Master Cannoli"; } Netcode.NetObjectList stumps = ((Woods)Game1.currentLocation).stumps; for (int i = 0; i < stumps.Count; i++) { if (stumps[i].occupiesTile(x, y)) { - return "large stump"; + return "Large Stump"; } } return null;