Beacon Flight 2

Quick rating

Community listing page, reviews here may not be monitored by the author.

Beacon Flight 2

No reviews yet

Beacons can now allow players to fly!

QoL & Tweaks
Player Transport
Mod Loaders
Fabric
Minecraft

Community voices

Reviews

List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Show per page
10
25
50
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Where It Runs
Server Only

Runs entirely on the server. Also works in singleplayer.

About

Project Details

Type
Mod
License
MIT License
Latest Version
BeaconFlight-1.3.8+mc26.1.jar

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

BeaconFlight

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

BeaconFlight

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

Screenshots

Gallery

This project has no gallery images yet.

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

~1,000
Total Downloads
CurseForge
<1,000
Modrinth
<1,000
Last Updated
CurseForge
Modrinth
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works