diff options
| author | troido <troido@protonmail.com> | 2020-09-26 22:00:08 +0200 |
|---|---|---|
| committer | troido <troido@protonmail.com> | 2020-09-26 22:00:08 +0200 |
| commit | 08927590ba1012dd8043361f5f5bf4d3dad7b99c (patch) | |
| tree | bdfc40064acc941196208e9758a38a9dd16c427e | |
| parent | 7630cd991b8fc2be01402a2522115adc56cba4de (diff) | |
fixed bug where planted/growing carrots/cotton would crash the game
| -rw-r--r-- | content/encyclopediae/crops.json | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/content/encyclopediae/crops.json b/content/encyclopediae/crops.json index 48a52b2..a8c9047 100644 --- a/content/encyclopediae/crops.json +++ b/content/encyclopediae/crops.json @@ -176,11 +176,11 @@ "cottoncloth": {"sprite": "cottoncloth"} }, "templates":{ - "plantedcarrotseed": ["plantedseed", {"delay": 1800, "next": "carrotseedling"}], - "carrotseedling": ["seedling", {"delay": 3000, "next": "youngcarrotplant"}], - "youngcarrotplant": ["youngplant", {"crop": "carrot", "delay": 6000, "next": "carrotplant"}], - "plantedcottonseed": ["plantedseed", {"delay": 6000, "next": "cottonseedling"}], - "cottonseedling": ["seedling", {"delay": 18000, "next": "youngcottonplant"}], - "youngcottonplant": ["youngplant", {"crop": "cotton", "delay": 36000, "next": "cottonplant"}] + "plantedcarrotseed": ["plantedseed", {"delay": 1800, "next": {"type": "carrotseedling"}}], + "carrotseedling": ["seedling", {"delay": 3000, "next": {"type": "youngcarrotplant"}}], + "youngcarrotplant": ["youngplant", {"crop": "carrot", "delay": 6000, "next": {"type": "carrotplant"}}], + "plantedcottonseed": ["plantedseed", {"delay": 6000, "next": {"type": "cottonseedling"}}], + "cottonseedling": ["seedling", {"delay": 18000, "next": {"type": "youngcottonplant"}}], + "youngcottonplant": ["youngplant", {"crop": "cotton", "delay": 36000, "next": {"type": "cottonplant"}}] } } |
