Compact Machines

Compact Machines

65M Downloads

Duplicate items with different NBT not working

CritFlaw opened this issue ยท 1 comments

commented

Compact Machines version: compactmachines3 3.0.12-b215

Forge version: 2772

I am not using Optifine: Yes

Link to Crashlog: Not really a crash log but a log with the issue found https://hastebin.com/dabesoneli.cs

Description of the problem including expected versus actual behavior:
I'm trying to add the biome crystals from Random Things, using the NBT tags, per the zombie egg example from compact machines. The problem is, that trying to add multiple of these, that have the same itemstack name and are only differentiated by NBT data. An example of one of them:

  "name": "randomthings:biomecrystal",
  "target-item": "randomthings:biomecrystal",
  "target-nbt": "{biomeName: \"biomesoplenty:shield\"}",
  "target-count": 1,

  "catalyst": "randomthings:biomecrystal",

  "input-types": {
    "s": { "id": "minecraft:stonebrick", "meta": 2 },
    "d": { "id": "minecraft:dirt"}
  },

  "symmetrical": true,
  "shape": [
    [ 
      [ "_", "_", "_" ],
      [ "_", "d", "_" ],
      [ "_", "_", "_" ]
    ],
    [
      [ "_", "d", "_" ],
      [ "d", "s", "d" ],
      [ "_", "d", "_" ]
    ],
    [
      [ "_", "_", "_" ],
      [ "_", "d", "_" ],
      [ "_", "_", "_" ]
    ]
  ]
}

One of the jsons does get loaded as you can see by the log above, the minecraft beaches. How can I get the rest to load?

commented

Changing the name tag in the recipe fixes this.