summaryrefslogtreecommitdiff
path: root/content/encyclopediae
diff options
context:
space:
mode:
authortroido <troido@protonmail.com>2020-09-26 22:00:08 +0200
committertroido <troido@protonmail.com>2020-09-26 22:00:08 +0200
commit08927590ba1012dd8043361f5f5bf4d3dad7b99c (patch)
treebdfc40064acc941196208e9758a38a9dd16c427e /content/encyclopediae
parent7630cd991b8fc2be01402a2522115adc56cba4de (diff)
fixed bug where planted/growing carrots/cotton would crash the game
Diffstat (limited to 'content/encyclopediae')
-rw-r--r--content/encyclopediae/crops.json12
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"}}]
}
}