Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Skin Browser
  • Cape Gallery
  • Seed Vault
  • Blog
  • Guides

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

Site & Legal

  • About
  • Authors
  • Editorial Policy
  • Corrections
  • Contact
  • Privacy Policy
  • Terms of Service
  • DMCA
  • Sitemap

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
Beacon Flight 2
ModMIT

Beacon Flight 2

Beacons can now allow players to fly!

122
Downloads
1
Followers
1 weeks ago
Updated
📦
2
Versions
game-mechanicstransportationfabric
Download Latestv1.3.8+mc26.1View on Modrinth

📖About Beacon Flight 2

BeaconFlight

BeaconFlight icon

BeaconFlight lets active beacons grant creative-style flight when configurable conditions are met.

The gameplay logic is server-side, so it works on dedicated servers with unmodded clients. The same jar can also be used in singleplayer. If you install Mod Menu and Cloth Config on the client, the mod exposes an in-game config screen as well.

Compatibility

  • Minecraft 1.21 through 1.21.11
  • Fabric Loader 0.15.11+
  • Java 21+
  • Fabric API required
  • Mod Menu optional
  • Cloth Config optional

How It Works

  • The beacon must be active and have a primary effect selected.
  • By default, BeaconFlight requires a level 4 beacon and the minecraft:end/elytra advancement.
  • While the player stays in range and meets all configured requirements, flight is allowed.
  • When the player leaves range, flight can linger for a configurable amount of time.
  • When flight is removed while the player is airborne, Slow Falling can be applied automatically.

Installation

  1. Install Fabric Loader and Fabric API for your target Minecraft version.
  2. Place the BeaconFlight jar in the mods folder.
  3. On a dedicated server, only the server needs the mod for flight to work.
  4. In singleplayer, install the jar normally on the client.
  5. Start the game or server once to generate the config file.

The config file is created at:

config/beaconflight_config.json

Configuration

You can edit the JSON file directly, or use the Mod Menu config screen if Mod Menu and Cloth Config are installed.

Available options:

  • minBeaconLevel: minimum beacon pyramid level required. Valid values are 1 to 4.
  • mainHandItem: required item in the player's main hand, or null.
  • offHandItem: required item in the player's off hand, or null.
  • anyHandItem: required item in either hand, or null.
  • headItem: required helmet item, or null.
  • chestItem: required chest item, or null.
  • legsItem: required leggings item, or null.
  • feetItem: required boots item, or null.
  • advancementsRequired: list of advancement ids the player must have completed.
  • xpDrainRate: XP drained per second of active flight. Use 0.0 to disable XP drain.
  • flightLingerTime: custom linger duration in ticks after the player leaves beacon range. Use 0 to reuse the normal beacon effect duration.
  • slowFallingTime: Slow Falling duration in seconds after flight is lost.
  • logLevel: BeaconFlight log level. Useful values are INFO, DEBUG, TRACE, ALL, and OFF.

Notes:

  • Item fields must use item ids such as minecraft:diamond_chestplate.
  • Advancement fields must use advancement ids such as minecraft:end/elytra.
  • Resetting the config returns the default requirements, which are not a minimal test setup.

Default config:

{
  "minBeaconLevel": 4,
  "mainHandItem": null,
  "offHandItem": null,
  "anyHandItem": null,
  "headItem": null,
  "chestItem": null,
  "legsItem": null,
  "feetItem": null,
  "advancementsRequired": [
    "minecraft:end/elytra"
  ],
  "xpDrainRate": 0.0,
  "flightLingerTime": 0,
  "slowFallingTime": 10,
  "logLevel": "INFO"
}

Minimal config for testing:

{
  "minBeaconLevel": 1,
  "mainHandItem": null,
  "offHandItem": null,
  "anyHandItem": null,
  "headItem": null,
  "chestItem": null,
  "legsItem": null,
  "feetItem": null,
  "advancementsRequired": [],
  "xpDrainRate": 0.0,
  "flightLingerTime": 0,
  "slowFallingTime": 10,
  "logLevel": "ALL"
}

Troubleshooting

  • If flight does not activate, make sure the beacon is actually active and has a primary effect selected.
  • If you used "reset" in the config UI, remember that the defaults still require a level 4 beacon and the Elytra advancement.
  • Set logLevel to ALL to get grant and deny messages in the game log.
  • If you want a clean test, remove all item requirements, clear advancementsRequired, and set minBeaconLevel to match your beacon.

Building From Source

Use the Gradle wrapper:

.\gradlew.bat build

The built jar is written to:

build/libs/

Credits

  • Original mod: ExtraCrafTX/BeaconFlight
  • Original author: ExtraCrafTX
  • Thanks to @xAlicatt for the original idea, commissioning the mod, and testing.

👥 Team & Contributors

OneDefauter
OneDefauterOwner

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
fabric
Minecraft Versions
26.126.1.126.1.2

🔗 Links

Modrinth Page