farming: Fix harvestable health-check crops contract status

This commit fixes a bug which caused the farming contract manager to
ncorrectly report the status of a crop which had been health-checked as
IN_PROGRESS for an active contract, instead of OCCUPIED.
This commit is contained in:
Cyborger1
2020-09-26 16:41:21 -04:00
committed by Jordan Atwood
parent 01447e52a7
commit a3a647e206

View File

@@ -257,6 +257,8 @@ public class FarmingContractManager
&& !hasEmptyPatch)
{
summary = SummaryState.OCCUPIED;
// Don't let this run into the "Completed" section!
continue;
}
}