Quark Oddities

Quark Oddities

22M Downloads

compact crafting compatability ? kubjs added recipe using quark blocks doesnt work

wildfire2501 opened this issue ยท 2 comments

commented

so as the title says i added a recipe for the compact crafting mod via kubejs. this recipe only uses quark blocks. namely sturdy stone and stick stack.
ive opened an issue with compact craftint and so far we have found no reason why it isnt working.

so the real question here is; has anyone mentioned a compatability issue with compact crafting before ?

in any case i will include the recipe code below.

event.recipes.compactcrafting.miniaturization({
recipeSize: 3,
layers: [
   {
    type: "compactcrafting:mixed",
    pattern: [
      ["_", "_", "_"],
      ["G", "G", "G"],
      ["_", "_", "_"],
     ],
    },
   {
type: "compactcrafting:mixed",
pattern: [
  ["_", "_", "_"],
  ["_", "W", "_"],
  ["_", "_", "_"],
 ],
 },
 {
    type: "compactcrafting:mixed",
    pattern: [
      ["_", "_", "_"],
       ["_", "W", "_"],
      ["_", "_", "_"],
      ],
   },
  ],

 catalyst: {
  id: "minecraft:ender_pearl",
   Count: 1,
  },

components: {
  W: {
    type: "compactcrafting:block",
    block: "quark:stick_block",
   },
  G: {
    type: "compactcrafting:block",
    block: "quark:sturdy_stone",
   },
  },

outputs: [
  {
    id: "minecraft:stone_pickaxe",
  Count: 9,
     },
   ],
 });
commented

I don't know the mod in question, but Quark makes nothing special with its blocks that could cause this to fail, so I think it might just be an incorrect configuration on your end

commented

That's good to know. Thanks for the reassurance.