diff options
author | David Thompson <dthompson@vistahigherlearning.com> | 2022-03-24 09:00:27 -0400 |
---|---|---|
committer | David Thompson <dthompson@vistahigherlearning.com> | 2022-03-24 09:00:27 -0400 |
commit | 3639d1fc7c22e4e16bf0afce2b6b98e5529d6609 (patch) | |
tree | 05a6867cd138df6a767eb0cf3a14a07eed8db12b | |
parent | d505fbaa2da3dc0c20838a11bf82ebdd971b5d34 (diff) |
Fix Bok Choy settings.
-rw-r--r-- | js/garden.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/js/garden.js b/js/garden.js index 13fd9e1..14b7c95 100644 --- a/js/garden.js +++ b/js/garden.js @@ -150,11 +150,12 @@ const CROPS = [ new Crop("Bok Choy", { fallCrop: true, family: "Brassica", - headStart: 4, + headStart: 3, maturity: 7, spacing: 4, species: ["brassica rapa"], - springPlant: -2 + springPlant: -2, + transplant: true }), new Crop("Broccoli", { fallCrop: true, |