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.

TRtrolPublished 4 min read

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.

  1. Monitor height

    Every tick, the module checks your current Y coordinate.

  2. Check threshold

    If your height falls below the configured threshold, the module considers you in danger.

  3. Trigger response

    The module either teleports you up or places a block underneath you.

  4. Stop the fall

    You either land on the block or get moved back to safety, avoiding the void.

Common Anti Void settings

SettingWhat it controls
ThresholdThe height at which Anti Void decides you are in danger and reacts
Response modeTeleport back to solid ground, or place a catch block underneath you
Teleport heightHow high the teleport places you when reacting
Fallback modeWhat 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