diff --git a/README.md b/README.md index d7a3e6e..d034ee4 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ the conditions when the plant will be harvested: - young: - if it is a weed, and the option **Remove weeds** is **ON** - if the option **Clean garden** is **ON**, the corresponding saved slot is - empty and the plant is already unlocked + empty and the plant is already unlocked or new - if the option **Clean garden** is **ON**, the corresponding saved slot is not empty but the young plant don't match - mature: diff --git a/cookie-garden-helper.js b/cookie-garden-helper.js index b9bd005..09d995b 100644 --- a/cookie-garden-helper.js +++ b/cookie-garden-helper.js @@ -451,7 +451,7 @@ class UI { ${this.button( 'autoHarvestCleanGarden', 'Clean Garden', - 'Only allow saved and unlocked seeds', + 'Only allow saved and new/unlocked seeds', true, config.autoHarvestCleanGarden, )} diff --git a/src/UI.js b/src/UI.js index 43faa16..6875e7a 100644 --- a/src/UI.js +++ b/src/UI.js @@ -229,7 +229,7 @@ class UI { ${this.button( 'autoHarvestCleanGarden', 'Clean Garden', - 'Only allow saved and unlocked seeds', + 'Only allow saved and new/unlocked seeds', true, config.autoHarvestCleanGarden, )}