Create

Create

86M Downloads

[Modding] Sandpaper polishing doesn't work in sequenced assembly recipes

ivxvm opened this issue ยท 0 comments

commented

Describe the Bug

Sandpaper polishing doesn't work in sequenced assembly recipes.

Reproduction Steps

  1. Add a custom sequenced assembly recipe like this (you can replace modded items with any vanilla items, it doesn't matter):
{
  "type": "create:sequenced_assembly",
  "ingredient": {
    "item": "droid_create_diamond_recipe:haunted_scorial_coal"
  },
  "transitionalItem": {
    "item": "droid_create_diamond_recipe:impure_diamond_chunk"
  },
  "sequence": [
    {
      "type": "create:deploying",
      "ingredients": [
        {
          "item": "droid_create_diamond_recipe:impure_diamond_chunk"
        },
        {
          "item": "create:experience_nugget"
        }
      ],
      "results": [
        {
          "item": "droid_create_diamond_recipe:impure_diamond_chunk"
        }
      ]
    },
    {
      "type": "create:cutting",
      "ingredients": [
        {
          "item": "droid_create_diamond_recipe:impure_diamond_chunk"
        }
      ],
      "results": [
        {
          "item": "droid_create_diamond_recipe:impure_diamond_chunk"
        }
      ],
      "processingTime": 50
    },
    {
      "type": "create:deploying",
      "ingredients": [
        {
          "item": "droid_create_diamond_recipe:impure_diamond_chunk"
        },
        {
          "tag": "create:sandpaper"
        }
      ],
      "results": [
        {
          "item": "droid_create_diamond_recipe:impure_diamond_chunk"
        }
      ]
    },
    {
      "type": "create:pressing",
      "ingredients": [
        {
          "item": "droid_create_diamond_recipe:impure_diamond_chunk"
        }
      ],
      "results": [
        {
          "item": "droid_create_diamond_recipe:impure_diamond_chunk"
        }
      ]
    }
  ],
  "results": [
    {
      "item": "droid_create_diamond_recipe:diamond_chunk",
      "count": 1
    }
  ],
  "loops": 2,
  "conditions": [
    {
      "type": "forge:mod_loaded",
      "modid": "create"
    }
  ]
}
  1. Try executing this assembly recipe in game.

Expected Result

First two steps work as expected, but when it comes to deploying sandpaper, assembly line simply stops working, item skips the deployer and proceeds further. Additional note: replacing tag: "create:sandpaper" with item: "create:sand_paper" or even replacing the whole deployer step with type: "create:sandpaper_polishing" doesn't help.

Screenshots and Videos

No response

Crash Report or Log

No response

Operating System

Windows 10

Mod Version

0.5.1f

Minecraft Version

1.20.1

Forge Version

47.2.20

Other Mods

No response

Additional Context

No response