Slight farming bugfix

This commit is contained in:
ceikry 2021-08-04 22:57:14 -05:00
parent 484bf31c90
commit c1bc766c98

View file

@ -76,6 +76,9 @@ class CropHarvester : OptionHandler() {
)
} else {
patch.harvestAmt--
if(patch.harvestAmt <= 0){
patch.clear()
}
}
return patch.cropLives <= 0 || patch.harvestAmt <= 0
}