josephcsible / Oreberries

A Minecraft mod that brings back a configurable version of 1.7.10 Tinkers' Construct oreberries
https://minecraft.curseforge.com/projects/oreberries
Other
3 stars 4 forks source link

[Question]: Cobald and Ardite Berries #13

Closed lays24mc closed 6 years ago

lays24mc commented 6 years ago

Hi,

I created in the oreberries.json Cobalt and Ardit (TConstuct) bushes. As far as everything works. Unfortunately, I realize now that I can craft the Oreberries to Cobalt Ingots and Ardit Ingots. Can I somehow disable that? I want the berries to be melted.

"Cobalt": { "color": "#0e48c1", "tooltip": "Very rare", "smeltingResult": "tconstruct:nuggets", "rarity": 3, "density": 2, "maxHeight": 32, "sizeChance": 6, "replaceBlocks": ["minecraft:netherrack"], "dimensions": [-1] }, "Ardite": { "color": "#CC3939", "tooltip": "Very rare", "smeltingResult": "tconstruct:nuggets:1", "rarity": 3, "density": 2, "maxHeight": 32, "sizeChance": 6, "replaceBlocks": ["minecraft:netherrack"], "dimensions": [-1]

josephcsible commented 6 years ago

This happens because oreberries are oredicted to nuggets by default, and the crafting recipe for cobalt and ardite ingots uses the oredict. To make this stop happening, add "oredictNames": [], to each of your entries.

lays24mc commented 6 years ago

Thank you. It works :D