MineSpecsLoading world…
All articles
RedstoneAug 5, 2026 8 min read

The Crafter Block: Automated Crafting Explained

The 1.21 Crafter turns one redstone pulse into one crafted item. How slot disabling, comparator output and the trigger edge really work.


A Crafter turns a redstone pulse into a finished item. Load it with ingredients, hit it with power, and the result fires out of the front face into whatever container you put there — no player standing at a bench, no clicking, no menu. It arrived with 1.21 and it is the block that finally made fully automatic vanilla factories possible. It also behaves almost nothing like the crafting table it resembles, which is why most first builds sit there doing nothing.

Build the block first

The Crafter costs 5 iron ingots, 1 crafting table, 2 redstone dust and 1 dropper. Lay it out in a 3x3 grid like this:

  • Top row: iron ingot, iron ingot, iron ingot
  • Middle row: iron ingot, crafting table, iron ingot
  • Bottom row: redstone dust, dropper, redstone dust

That is cheap enough that any working iron farm pays for a dozen of them in an afternoon. Make several — most useful builds chain two or three.

The Crafter is directional, exactly like a dropper. It has a single front face that output leaves from, and it can be aimed in any of the six directions including straight up and straight down. Place it, then flick a lever on and off once before you build anything around it. Knowing which way it points saves tearing the whole line apart later.

What one redstone pulse actually does

This is the part people get wrong. Powering a Crafter attempts one craft, on the rising edge of the signal. Holding the lever on does not craft repeatedly — it crafts once and then sits there powered and idle. To craft again the signal has to drop to zero and rise again.

When it fires, three things happen:

  • It checks whether the items currently in the grid form a valid recipe.
  • If they do, it removes exactly one item from every occupied slot and produces the result.
  • The result is pushed into the container the front face points at. If there is no container there, it is thrown into the world as an item, exactly like a dropper.

If the grid does not form a valid recipe, nothing happens at all. No jam, no damage, no wasted items. That forgiveness is the single most useful property of the block: you can safely feed a Crafter a free-running clock and it will simply ignore every pulse until it has enough to work with.

The output never stays in the grid either, so a Crafter cannot clog on its own product the way a furnace can.

Disabling slots is the whole trick

Open the Crafter and click any slot in the 3x3 grid. A cross appears over it and that slot is now disabled: nothing can be put in it, by you or by a hopper. Click it again to re-enable. Do this with the grid empty, before you connect any inputs.

You need this because you cannot tell a hopper which slot to fill. The Crafter decides on its own where incoming items go. The only shape control you have over the recipe is which slots are allowed to receive anything in the first place.

Disabled slots count as empty for recipe matching, so a Crafter with seven crosses and two live slots in a vertical pair, fed nothing but planks, is a stick machine and nothing else. Any planks that arrive can only land in those two slots, so the shape is guaranteed correct every single time.

TipShaped recipes match anywhere in the grid, not just the top left. Two planks stacked vertically in the middle column make sticks just as well as two in the left column — pick whichever pair is convenient for your hopper.

How items choose a slot

The rule is simple and it decides whether your build works. An incoming item goes to the enabled slot holding the fewest items. When several slots are tied — which is the normal case — it takes the earliest one, reading the grid left to right, top to bottom.

Two consequences follow, and they matter enormously:

  • Single-ingredient recipes are effortless. Feed 64 iron ingots into a Crafter with all nine slots live and they distribute one at a time, round robin, until every slot has the same count. Nine ingots in, one perfectly formed grid. This is why compressors are the natural first build.
  • Multi-ingredient recipes are genuinely hard. Two different item types spread out according to the order they arrived, not according to the recipe. Cobblestone and sticks fed down the same hopper will produce a mess that matches nothing. Making a Crafter build a pickaxe means controlling the exact sequence and count of every delivery, usually with separate hopper lines fired in a set order. Get the single-ingredient builds working first.

Reading a Crafter with a comparator

A comparator against a Crafter outputs the number of slots that are either holding an item or disabled, up to a maximum of 9. So a full signal of 9 means "every slot I care about is loaded and this thing is ready to craft".

That makes a nine-slot compressor read 9 only when all nine ingots are present, and makes the two-slot stick machine read 9 only when both planks have arrived — seven crosses plus two filled slots. It is a clean ready-detector. If comparators are still fuzzy, the comparator guide covers subtract mode and signal strength properly.

The critical detail: the signal does not scale with stack size. One ingot in a slot and 64 ingots in a slot both read as "filled". That is exactly what causes the failure below.

Build one: the stick machine

  1. 1.Place the Crafter with its front face pointing into a hopper that leads to a chest or barrel.
  2. 2.Open it and disable seven slots, leaving two live slots vertically adjacent to each other.
  3. 3.Put a hopper on top, fed from a chest or straight from a tree farm output line. Planks only — never share the line with anything else.
  4. 4.Run a repeater clock into the Crafter, or into a solid block touching it.

Every pulse where both slots hold a plank consumes two planks and ejects four sticks. Every pulse where they do not is silently ignored. Turn the clock off and the machine stops without leaving anything half-finished.

Build two: the nine-to-one compressor

This is the build most people actually want: ingots to blocks, nuggets to ingots, wheat to hay, coal to coal blocks.

  1. 1.Leave all nine slots enabled. No crosses at all.
  2. 2.Feed one item type in from a hopper on top or on any side.
  3. 3.Point the front face into a hopper leading to your storage.
  4. 4.Clock it.

Because of the least-full rule, whatever arrives spreads evenly and the grid is always the correct nine-of-a-kind shape. Add a comparator against the Crafter if you want a lamp, or a gate that only lets the clock through when the signal reaches 9 — that stops the clock ticking pointlessly overnight when the farm is idle.

Chain two of them and gold nuggets become ingots, and those ingots become blocks, with no intervention. Do not try the same trick with raw ore ahead of a furnace, though. Blocks of raw iron, raw copper and raw gold have no smelting recipe at all, so compressing first leaves you holding something no furnace will accept — and smelting is charged per item either way, so there is nothing to save. Smelt first, compress the ingots afterwards; the auto smelter guide covers the furnace half of that line.

The failure everyone hits

Symptom: it crafts once, then never again. You wired a comparator directly back into the Crafter so it would self-trigger when full. It fired once and stopped forever.

Here is why. The comparator hit 9, the Crafter crafted, and one item was removed from every slot. But every slot still holds 63 more, so it still reads as "filled" — the comparator stays pinned at 9. No falling edge means no new rising edge, and the Crafter needs a rising edge. It sits there powered and inert while the hopper cheerfully tops it up.

Two fixes, both fine:

  • Use a free-running clock. A repeater loop or a simple hopper clock pulsing every second or so is completely safe, because invalid pulses do nothing. This is the low-effort answer and it is what most survival builds use. The clocks and timers guide has designs you can copy.
  • Use the comparator to gate a clock, not to pulse the Crafter. Signal of 9 enables the clock; anything less shuts it off. You get the ready-detection without depending on the signal falling.

Symptom: it stops dead and the hopper backs up. A wrong item got into a live slot. Crafters accept any item into any enabled slot — the crosses control position, not item type. One stray cobblestone in your stick machine and it will never craft again until you clear the grid by hand. Every Crafter needs a dedicated, filtered input line; see the hopper guide for building filters that only pass one item.

Symptom: it seems to swallow everything. Each slot holds a full stack, so a nine-slot Crafter absorbs 576 items before the hopper above it backs up. That is normal storage, not a fault. Check the grid before assuming something is broken.

Quick checklist before you walk away

  • Front face points into a hopper or chest, verified with one test pulse.
  • Crosses set with the grid empty, and only the slots the recipe needs are live.
  • Exactly one item type reaching the input hopper.
  • The trigger produces genuine pulses, not constant power.
  • One full test cycle watched from start to finish, not just the first craft.

Get those five right and a Crafter runs unattended for as long as you keep feeding it. Get the fourth one wrong and you will spend an hour convinced the block is broken when it is simply waiting for the signal to drop.

#Redstone#Automation#Crafter#1.21