Farms and Redstone Fundamentals
Last verified against its sources on 23 September 2026
A steady food supply and a working understanding of redstone round out a survival world. This module covers growing crops on hydrated farmland, breeding animals into a self-sustaining farm, and the redstone basics — signal strength, torches, repeaters and comparators — needed to wire up a first working circuit.
Growing Crops
- Build farmland that stays hydrated, and predict how far one water source reaches.
- Explain why a light level below the minimum stops a crop from growing at all.
Farmland is made by using a hoe on dirt or a grass block, and it's required to grow wheat, carrot, potato and beetroot seeds. It needs a light level of roughly 8 or higher reaching it to let anything grow, which works just as well from torches underground as it does from open sky. Farmland isn't sturdy, either: a player or mob jumping directly onto it reverts it straight back to dirt and knocks loose whatever crop was growing there.
Farmland counts as hydrated whenever water sits within 4 blocks of it horizontally, including diagonally, at the same level or one block above — a single water source placed at the center of a plot keeps an entire 9x9 area hydrated. Hydrated farmland grows crops noticeably faster than dry farmland and won't decay back into dirt on its own as long as water stays in range; rain falling on farmland hydrates it too, just less reliably than a planned water source.
Growth happens on random ticks rather than a fixed schedule, so crops mature over real time even while you're not watching, with each tick giving a crop a chance to advance one stage. Bone meal skips that randomness entirely: a single application typically advances wheat, carrots or potatoes by 2 to 5 growth stages at once, so a couple of uses can finish a plant outright. Planting in alternating rows, with a strip of empty farmland or a different crop type between them, actually speeds up growth compared with packing one crop type in solid, since neighboring plants of the same type slow each other down. A fence around the whole plot keeps mobs from wandering in and trampling it.
You place a single water source in the center of a fully-tilled 9x9 patch of farmland. Does every block in that patch stay hydrated?Answer it yourself first, then open this.
Yes — one water source hydrates farmland up to 4 blocks away in every horizontal direction, which covers exactly a 9x9 area.
Breeding Animals
- Feed two animals of the same species to trigger breeding, and predict the cooldown before they can breed again.
- Match an animal to the food that actually triggers its love mode.
Feeding an adult animal its specific food puts it into "love mode," and different species need entirely different foods: wheat for cows, sheep and mooshrooms; carrots, potatoes or beetroot for pigs; seeds for chickens. Two animals of the same species, both in love mode within about 8 blocks of each other, pathfind toward one another, spend a couple of seconds together, and then produce a baby while dropping 1 to 7 experience.
Each parent gets a 5-minute cooldown after breeding before it can be fed again to re-enter love mode; feeding it again during that cooldown simply does nothing. An animal that's fed but doesn't find a partner within 30 seconds drops back out of love mode on its own, though it can be fed again immediately to retry. Since a small starting group can roughly double with each full breeding cycle, a pair of any animal grows into a proper farm surprisingly quickly if you keep feeding pairs as they come off cooldown.
Fencing a breeding pen matters for two separate reasons beyond simply keeping animals contained: it keeps predators like wolves away from smaller animals, and it stops a growing population from wandering off and getting lost or killed by some hazard. A gate lets you get in to feed and harvest without animals slipping out every time it opens. Cows, sheep and pigs are the most beginner-friendly options, since none of them need to be tamed first — wolves, cats and horses all require taming before they'll accept breeding food at all.
You feed a cow wheat, then feed a nearby pig wheat too, hoping they'll breed together. Does it work?Answer it yourself first, then open this.
No — breeding only happens between two animals of the same species; a cow and a pig in love mode at the same time won't produce anything together.
Redstone Signals and Components
- Predict how far a redstone signal travels before it needs a boost.
- Explain what a repeater does differently from a comparator.
Redstone dust acts as wire. A fresh signal starts at strength 15 and loses 1 strength for every block of dust it crosses, hitting 0, and going dark, after 15 blocks — that's the hard range limit for a single unbroken run of dust. A redstone torch is both a power source, outputting strength 15, and an inverter: it stays lit and outputs power whenever the block it's attached to is unpowered, and switches off the moment that block receives power from somewhere else, flipping the signal.
A repeater sits inline with dust and boosts whatever signal reaches its back straight back up to full strength 15, letting a wire keep going well past 15 blocks. It also adds a small delay, from 1 up to 4 redstone ticks (0.1 to 0.4 seconds), adjustable by right-clicking it, and only lets signal flow in the one direction it's facing. A comparator looks similar but works differently: instead of boosting to a fixed 15, it passes through the same strength it receives at its back, and can compare or subtract a second signal fed into its side — it's also the one component that can read how full a container like a chest or hopper is and turn that into a redstone signal strength.
Put together, these pieces cover the three jobs every redstone build needs: something to make a signal (a lever, button, pressure plate, or redstone torch), something to move it (dust, with repeaters where distance demands it), and something to act on it (a piston, door, or redstone lamp). A repeater powered from its side by another powered repeater or comparator "locks," freezing its output at whatever it currently is until that side power goes away — a detail that trips up plenty of first builds that seem to randomly stop responding.
You run a line of redstone dust 20 blocks from a lever to a door. Does the door open when you flip the lever?Answer it yourself first, then open this.
No, not without a repeater somewhere along the way — a signal traveling unboosted through dust dies out after 15 blocks, five blocks short of reaching the door.
Building Simple Circuits
- Wire a lever or button to a door or redstone lamp using a basic circuit.
- Use a redstone torch as a NOT gate to build a circuit that's on when its input is off.
The simplest possible circuit is a direct one: a lever or button placed on or next to a door, redstone lamp, or piston, powering it straight through contact with no dust at all. A redstone lamp is a solid light source that only glows while it's receiving power, which makes it a useful visible indicator for whether a circuit is currently on — wire one to a pressure plate on the floor and it lights up the instant something steps on the plate, then goes dark again once it steps off.
A redstone torch turns any circuit into a NOT gate for free: attach it to a block, and it stays lit, outputting power, exactly when that block is unpowered, then switches off the moment the block gets powered from somewhere else. Wiring a lever to power the block a torch sits on, then running the torch's output to a lamp, builds a circuit that's backwards from the intuitive one — the lamp is lit when the lever is off, and goes dark when you flip the lever on. Stacking two of these inverters in a row cancels the flip out and returns you to ordinary, non-inverted behavior.
A repeater set to its longest delay, 4 redstone ticks or 0.4 seconds, is the easiest way to add a deliberate pause to a circuit, useful for something like a door that should stay open a beat longer than an instant pulse would allow. For anything that needs to compare two separate signals, or read a container's contents, reach for a comparator instead of a repeater, since a repeater can only boost or lock a signal, never compare or subtract one. Start every new build small and testable: wire one lever to one lamp first and confirm it works, then extend the circuit outward, rather than building an entire multi-block contraption before testing any of it.
A lever powers the block a redstone torch is sitting on, and the torch's output runs to a redstone lamp. Is the lamp lit while the lever is switched on?Answer it yourself first, then open this.
No — the torch is a NOT gate, so it goes dark exactly when its block is powered, meaning the lamp is lit only while the lever is off.