New mod: There's no record matching key xxx under Fields error

j3nesis

Cowpoke
I'm trying to make a mod along the lines of adding a (static, I'm too lazy to make a pickable list) 'Extra Harvest Chance' to a few custom crop packs I have. I'm getting this error:

Code:
Can't apply data patch "(CP) j3nesis Farming Edits > Include ChanceOfExtraHarvest/RosesCrueltyFreeMeat.json > EditData Data/Crops" to Data/Crops: there's no record matching key 'Roseloves109_Chickenseeds' under Fields.
This repeats for all items in the mod.

SMAPI log if you want to see it: https://smapi.io/log/fca811dba04249b38e07857bbb15b21a

The screenshot is a comparison of the original mod's crops.json - It's 'Rose's Cruelty Free Meat', some of you may know it - on the left, and my attempt at adding the new field on the right.

Here's my content.json:

Code:
{
  "Format": "2.8.0",
  "Changes": [
    {
      "Action": "Include",
      "FromFile": "ChanceOfExtraHarvest/RosesCrueltyFreeMeat.json"
    },
  ]
}
I am new to all this modding lark and I don't understand why 'There's no record matching key' is occurring. What do I need to do?

code.png
 
Top