Learn · modules
What Is Anti Void in Minecraft? Module Explained
Anti Void is a Minecraft module that stops a fatal void fall by teleporting you to safety or dropping a catch block underneath you before you land in it.
What is Anti Void in Minecraft?
Anti Void is a Minecraft module that stops you from falling to your death in the void by acting before the fall finishes, either teleporting you back to solid ground or dropping a block under your feet. The void has no forgiveness in vanilla Minecraft: you fall, you die, you lose whatever you were carrying, no rewind. Anti Void exists to catch the one mistake that usually cannot be undone, a missed bridge, a bad knockback near an edge, a lag spike at the wrong moment.
The appeal is recovery. Most deaths are predictable or preventable. A void fall often is not. Lag, a sudden knockback, or a moment of inattention can send you off a cliff with no counterplay. Anti Void gives you one last chance to escape that fate.
How Anti Void works
Anti Void tracks your Y coordinate, your height, on every game tick. Once that number drops below a threshold you configure, the module assumes you are about to go into the void and reacts before the fall completes. Depending on the implementation, it either teleports you back to a safe position or drops a block directly beneath your feet, catching you the way a real block would.
Monitor height
Every tick, the module checks your current Y coordinate.
Check threshold
If your height falls below the configured threshold, the module considers you in danger.
Trigger response
The module either teleports you up or places a block underneath you.
Stop the fall
You either land on the block or get moved back to safety, avoiding the void.
Common Anti Void settings
| Setting | What it controls |
|---|---|
| Threshold | The height at which Anti Void decides you are in danger and reacts |
| Response mode | Teleport back to solid ground, or place a catch block underneath you |
| Teleport height | How high the teleport places you when reacting |
| Fallback mode | What to do if the primary response fails |
The threshold is the only real judgment call. Set it too high and the module fires on situations nowhere near real danger, yanking you around on false alarms. Set it too low and you are betting the reaction lands before the fall is already unrecoverable.
Why it gets flagged
Anti Void reacts to a falling player with an action they did not perform through normal input: a teleport nobody walked into, or a block that appears with no aim-and-place sequence behind it. That is exactly the kind of mismatch a server-side anticheat is built to catch, because neither action matches what a real client sends on its own.
That is what separates Anti Void from something passive like a coordinate overlay. It does not just show you information, it changes what happens in the world on your behalf. Anyone running it should treat it as use-at-own-risk, the same way you would treat any module that acts for you instead of just informing you.
FAQ
A player who is about to fall into the void, the empty space below the world's lowest playable layer. It intervenes once their height crosses a threshold the user configures.
Depends on the implementation. Some teleport you back to a safe position, others drop a block underneath you so you land on it instead of falling further.
Yes. It works off a configured height threshold, so setting it too high fires the module far from real danger, and setting it too low risks reacting after the fall is already unrecoverable.
It is plausible. Any module that moves the player or places blocks without matching input creates a pattern a server-side anticheat can watch for, so treat it as use-at-own-risk rather than safe by default.