fix for busy stones..mostly
This commit is contained in:
@@ -687,12 +687,13 @@ namespace stardew_access.Features
|
|||||||
if (obj is Furniture)
|
if (obj is Furniture)
|
||||||
toReturn.category = CATEGORY.Furnitures;
|
toReturn.category = CATEGORY.Furnitures;
|
||||||
|
|
||||||
MachineState machineState = GetMachineState(obj);
|
if(toReturn.category == CATEGORY.Others) {
|
||||||
if (machineState == MachineState.Ready)
|
MachineState machineState = GetMachineState(obj);
|
||||||
toReturn.name = $"Harvestable {toReturn.name}";
|
if (machineState == MachineState.Ready)
|
||||||
else if (machineState == MachineState.Busy)
|
toReturn.name = $"Harvestable {toReturn.name}";
|
||||||
toReturn.name = $"Busy {toReturn.name}";
|
else if (machineState == MachineState.Busy)
|
||||||
|
toReturn.name = $"Busy {toReturn.name}";
|
||||||
|
}
|
||||||
return toReturn;
|
return toReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user