fix for missing bundle
This commit is contained in:
@@ -342,7 +342,7 @@ namespace stardew_access.Features
|
|||||||
if (name != null && communityCenter.shouldNoteAppearInArea(CommunityCenter.getAreaNumberFromName(name)))
|
if (name != null && communityCenter.shouldNoteAppearInArea(CommunityCenter.getAreaNumberFromName(name)))
|
||||||
return $"{name} bundle";
|
return $"{name} bundle";
|
||||||
}
|
}
|
||||||
else if (Game1.currentLocation is not AbandonedJojaMart)
|
else if (Game1.currentLocation is AbandonedJojaMart)
|
||||||
{
|
{
|
||||||
name = (x, y) switch
|
name = (x, y) switch
|
||||||
{
|
{
|
||||||
@@ -687,7 +687,7 @@ namespace stardew_access.Features
|
|||||||
if (obj is Furniture)
|
if (obj is Furniture)
|
||||||
toReturn.category = CATEGORY.Furnitures;
|
toReturn.category = CATEGORY.Furnitures;
|
||||||
|
|
||||||
if(toReturn.category == CATEGORY.Others) {
|
if(toReturn.category == CATEGORY.Others) {
|
||||||
MachineState machineState = GetMachineState(obj);
|
MachineState machineState = GetMachineState(obj);
|
||||||
if (machineState == MachineState.Ready)
|
if (machineState == MachineState.Ready)
|
||||||
toReturn.name = $"Harvestable {toReturn.name}";
|
toReturn.name = $"Harvestable {toReturn.name}";
|
||||||
@@ -838,7 +838,7 @@ namespace stardew_access.Features
|
|||||||
|
|
||||||
return (null, CATEGORY.Others);
|
return (null, CATEGORY.Others);
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
public static bool isMineDownLadderAtTile(int x, int y)
|
public static bool isMineDownLadderAtTile(int x, int y)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user