Some Ember features are gated by named feature flags. As a server owner, you can override each flag’s default state at startup by listing it inDocumentation Index
Fetch the complete documentation index at: https://ember.carr.sh/llms.txt
Use this file to discover all available pages before exploring further.
flags.txt. The current state of every flag is visible in-game via /ember flags.
How a flag resolves
Each flag has three pieces of metadata:- An id (for example,
command.version). This is what you write inflags.txt. - A description explaining what the flag gates.
- A default state,
enabledordisabled.
flags.txt flips the named flag from its default. The same file enables some features and disables others, depending on each flag’s default.
flags.txt
The file lives at plugins/Ember/flags.txt. Create it if it doesn’t exist. Put one flag id per line:
# are comments, and also ignored.
Flag reference
The catalog as ofv0.1.0-alpha.2 is below. For the running plugin’s view (including any flags added in newer releases), run /ember flags list in-game.
| Flag id | Description | Default | Since |
|---|---|---|---|
command.version | Gate registration of the /ember version subcommand. | enabled | v0.1.0-alpha.2 |
Inspecting flags in-game
/ember flags list prints every flag with its current state. /ember flags get <flag> prints the full details for a single flag, including whether the flag is set and how it resolved. Both are gated on the ember.flags permission. See the /ember flags command reference.