Added secret woods tiles

master
Mohammad Shoaib 2022-05-02 22:23:06 +05:30
parent a6f8e5fe35
commit 4735bde498
2 changed files with 16 additions and 5 deletions

View File

@ -881,7 +881,7 @@ namespace stardew_access.Features
public static string? getResourceClumpAtTile(int x, int y, bool lessInfo = false) public static string? getResourceClumpAtTile(int x, int y, bool lessInfo = false)
{ {
if (Game1.currentLocation is Woods) if (Game1.currentLocation is Woods)
return getStumpsInWoods(x, y, true); return getStumpsInWoods(x, y, lessInfo);
for (int i = 0; i < Game1.currentLocation.resourceClumps.Count; i++) for (int i = 0; i < Game1.currentLocation.resourceClumps.Count; i++)
{ {
@ -921,10 +921,6 @@ namespace stardew_access.Features
if (Game1.currentLocation is not Woods) if (Game1.currentLocation is not Woods)
return null; return null;
if ((x == 8 || x == 9) && y == 7)
{
return "Old Master Cannoli";
}
Netcode.NetObjectList<ResourceClump> stumps = ((Woods)Game1.currentLocation).stumps; Netcode.NetObjectList<ResourceClump> stumps = ((Woods)Game1.currentLocation).stumps;
for (int i = 0; i < stumps.Count; i++) for (int i = 0; i < stumps.Count; i++)
{ {

View File

@ -1880,7 +1880,22 @@
{ {
"x":[12], "x":[12],
"y":[4], "y":[4],
"type":"interactable"
}
},
"woods":
{
"Forest Entrance":
{
"x":[59],
"y":[17],
"type":"door" "type":"door"
},
"Old Master Cannoli":
{
"x":[8,9],
"y":[7],
"type":"interactable"
} }
} }
} }