marcel0ll / CustomItems

The most simple way to add your custom items to minecraft
https://marcel0ll.github.io/CustomItems/
20 stars 19 forks source link

Seeds from Crops #43

Closed jerjerje closed 8 years ago

jerjerje commented 8 years ago

I added a new crop, but it doesn't give me seeds back, when harvested. Here is what I wrote: { "crops": [ {"name": "Shard", "textureName":"shard_crop", "fruitName": "customitems:mixed_shard_essence", "renderType": "flower", "dropFromGrassChance": 0, "dropSeedWhenMature": true, "acceptBoneMeal": false, "minFruitDrop": 1, "maxFruitDrop": 1, "minSeedDrop": 1, "maxSeedDrop": 1, "eachExtraSeedDropChance": 0, "eachExtraFruitDropChance": 0, creativeTab = "Custom Items"}

]} I don't know if I'm just stupid or if this is a bug. Could somebody help me?

marcel0ll commented 8 years ago

Just to be sure. What version of MM-CI are you using?

jerjerje commented 8 years ago

1.0.9

marcel0ll commented 8 years ago

With this config you should always get one seed. I just fixed the json and added an item.

{
    "crops": [
        {
            "name": "Shard",
            "textureName": "shard_crop",
            "fruitName": "customitems:mixed_shard_essence",
            "renderType": "flower",
            "dropFromGrassChance": 0,
            "dropSeedWhenMature": true,
            "acceptBoneMeal": false,
            "minFruitDrop": 1,
            "maxFruitDrop": 1,
            "minSeedDrop": 1,
            "maxSeedDrop": 1,
            "eachExtraSeedDropChance": 0,
            "eachExtraFruitDropChance": 0,
            "creativeTab": "Custom Items"
        }
    ],

      "items": [
        {
            "name": "Mixed Shard Essence",
            "textureName": "shard_essence",
            "creativeTab": "Custom Items",
            "maxStackSize": 7,
            "glows": true
        }
      ]
}