-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sequenced Assembly Issue? (1.20.1) #49
Comments
both of the recipes aren't added |
Please fix it, I'm creating a modpack |
I swear I have added the transitional items
|
I've the same issue here, I tried with a custom recipe insteed but it still not work. this my recipe test e.recipes.create.sequenced_assembly([
'create:ochrum'
], 'minecraft:cobblestone', [
e.recipes.create.mixing('kubejs:fusion_orchum', ['minecraft:cobblestone', '2x minecraft:gold_ingot']).superheated(),
e.recipes.create.splashing('create:ochrum', 'kubejs:fusion_orchum')
])
.transitionalItem('kubejs:fusion_orchum')
.loops(1)
e.custom({
type: "create:sequenced_assembly",
ingredient: [
{
item: "minecraft:cobblestone"
}
],
results: [
{
item: "create:ochrum"
}
],
sequence: [
{
type: "create:mixing",
ingredients: [
{
item: "minecraft:cobblestone"
},
{
item: "minecraft:gold_ingot",
count: 2
}
],
results: {
item: "kubejs:fusion_orchum"
},
temperature: "superheated"
},
{
type: "create:splashing",
ingredients: [
{
item: "kubejs:fusion_orchum"
}
],
results: {
item: "create:ochrum"
}
}
],
transitionalItem: Item.of("kubejs:fusion_orchum"),
loops: 1
}) And the kjs server logs send me this for both of them Error parsing recipe
Maybe a bug on the Create mod directly :/ |
Definetly not Create, I tried adding the recipe via |
Also I don't know if mixing and bulk washing works with Seq. Assembly. I've only tried with deploying and pressing. |
After looking at your log, no, Create does not support your recipe types. I'd recommend sticking to deploying/pressing/filling as they are CONFIRMED to work. idk if draining works |
is it just my spaghetti code or is the mod bugging out
it is not adding the sequenced assembly recipes (how)
The text was updated successfully, but these errors were encountered: