aurilisdev / Electrodynamics

Electrodynamics is a mod that brings realistic, world-based science and technology into Minecraft along with some other additions.
https://aurilis.dev/electrodynamics/
Other
72 stars 19 forks source link

Gears are missing the generic #forge:gears tag #155

Closed lerokko closed 2 years ago

lerokko commented 2 years ago

The gear items only have the material specific sub tags. For TinkersConstruct for example the casting recipe uses the material specific sub tag to create the gear, however molding the gear cast itself can be done with any generic #forge:gears.

I added this file to remedy the issue: forge\tags\items\gears.json

{
  "replace": false,
  "values": [
    "#forge:gears/bronze",
    "#forge:gears/copper",
    "#forge:gears/iron",
    "#forge:gears/steel",
    "#forge:gears/tin"
  ]
}
aurilisdev commented 2 years ago

Added this now :)