fix for missing bundle

master
TrueBlindGaming 2022-03-19 16:59:42 -06:00
parent eb68e61bf7
commit b7e01c1dc1
1 changed files with 3 additions and 3 deletions

View File

@ -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}";