A very simple mod, which will kill player whenever he reach a certain fall distance. Mainly designed to be used in CubicChunks servers with The End dimension with unlimited height, but can be used in vanilla servers as well.
Max fall distance is configurable.
@SubscribeEvent
public void onEvent(PlayerTickEvent event) {
EntityPlayer player = event.player;
if (player.world.isRemote)
return;
if(player.fallDistance > deadlyFallDistance)
player.onKillCommand();
}
Quick facts
- Edition: Minecraft Java
- File type: .jar
- How to install: Install the matching mod loader (Forge, Fabric or NeoForge) for your Minecraft version. → Download the .jar. → Put it in the .minecraft/mods folder and launch that loader profile.
- Where to get it: Opens on CurseForge — not every file is mirrored on our own servers.
Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.
Verified by MCModsHub
- Ships as killing_fall-0.0.3.jar — drop this file into the mods folder
- Download size: 19 KB
- Download link checked 2 Sept 2026 — working
These come from our own check of the pack file, not from the source page.