Fix larger basins not exposing more than 5 plants at a time

Kinda stupid issue
This commit is contained in:
2023-07-16 05:11:37 -05:00
parent fb12d4851e
commit 81cd818b8d

View File

@@ -141,7 +141,7 @@ namespace HydroponicsExpanded {
break;
}
if (occupiedCells >= 4)
if (occupiedCells >= this.OccupiedRect().Area)
break;
}