kubejs: use kubejs-create builder API for flax press recipe #45

Merged
Matt merged 1 commits from refactor/supplementaries-bridges-kubejs-create-api into main 2026-05-28 19:08:43 +00:00
Showing only changes of commit d2cc179ebd - Show all commits
@@ -20,14 +20,12 @@ ServerEvents.recipes(event => {
// 2 flax pressed -> 1 string. Cheaper than wool->4 string but
// requires a Press (kinetic infrastructure) -- balanced.
//
// KubeJS's event.recipes.create.pressing(out, in) signature
// doesn't match Create 6.x's two-arg form, so build the recipe
// via custom() with the raw JSON schema.
event.custom({
type: 'create:pressing',
ingredients: [{ item: 'supplementaries:flax' }],
results: [{ id: 'minecraft:string', count: 2 }],
}).id('bns:press_flax_to_string');
// Uses the kubejs_create mod's builder API (added in pack v0.27.0).
// Before that, the bare event.recipes.create.pressing() signature
// didn't match Create 6.x's recipe shape and we had to use a raw
// event.custom({type: 'create:pressing', ...}) call.
event.recipes.create.pressing('2x minecraft:string', 'supplementaries:flax')
.id('bns:press_flax_to_string');
console.info('[bns/supplementaries_bridges] added flax -> string press recipe');
});