Skip to content

Configuration

Blzd edited this page Jun 8, 2026 · 1 revision

Configuration

BlzdFly stores its configuration in:

plugins/BlzdFly/config.yml


Default Configuration

# Show action bars for timed and claim flight.
actionbar:
  enabled: true

flight:
  # Bedrock-style flight.
  # Players stop instantly when movement keys are released.
  bedrock-flight: false

claim-flight:
  # Seconds a player can remain outside their claim
  # before Claim Flight expires.
  grace-seconds: 5

Action Bar Settings

actionbar.enabled

Controls whether flight information is displayed in the player's action bar.

Default

actionbar:
  enabled: true

Options

Value Description
true Show action bar flight information
false Disable action bar flight information

Flight Settings

flight.bedrock-flight

Enables Bedrock-style flight controls.

When enabled, players stop moving immediately when movement keys are released, similar to Minecraft Bedrock Edition.

Default

flight:
  bedrock-flight: false

Options

Value Description
true Enable Bedrock-style flight
false Use standard Java Edition flight behaviour

Claim Flight Settings

claim-flight.grace-seconds

The number of seconds a player may remain outside their claim before Claim Flight expires.

Default

claim-flight:
  grace-seconds: 5

Example

With a value of 5, a player leaving their claim has 5 seconds to return before Claim Flight is removed.


Applying Changes

After modifying the configuration, reload BlzdFly using:

/fly reload

or restart your server.


Notes

  • Configuration changes are stored in config.yml.
  • Invalid configuration values may be reset to defaults.
  • Always create a backup before making major configuration changes.

Clone this wiki locally