Merge branch 'enhancements'

Merging the new enhancements to master
master
Mohammad Shoaib Khan 2022-08-17 13:07:57 +05:30
commit 5bd3e4085d
1 changed files with 4 additions and 0 deletions

View File

@ -323,6 +323,10 @@ namespace stardew_access.Features
return (CATEGORY.Doors, name + " Animal Door " + ((building.animalDoorOpen.Value) ? "Opened" : "Closed")); return (CATEGORY.Doors, name + " Animal Door " + ((building.animalDoorOpen.Value) ? "Opened" : "Closed"));
else if (building.tileX.Value == x && building.tileY.Value == y) else if (building.tileX.Value == x && building.tileY.Value == y)
return (CATEGORY.Buildings, name); return (CATEGORY.Buildings, name);
else if (building is Mill && (building.tileX.Value + 1) == x && (building.tileY.Value + 1) == y)
return (CATEGORY.Buildings, name + " input");
else if (building is Mill && (building.tileX.Value + 3) == x && (building.tileY.Value + 1) == y)
return (CATEGORY.Buildings, name + " output");
else if (!lessInfo) else if (!lessInfo)
return (CATEGORY.Buildings, name); return (CATEGORY.Buildings, name);
} }