Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions src/content/docs/paper/dev/api/folia-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,20 @@ slug: paper/dev/folia-support
[Folia](https://github.com/PaperMC/Folia) is a fork of Paper, which is currently maintained by the PaperMC team.
It adds the ability to split the world into regions as outlined [here](/folia/reference/overview) in more depth.

# Mark plugin as supported on Folia

Plugins can't run on Folia if you don't have this field in your paper-plugin.yml (or plugin.yml, respectively):
```yaml
folia-supported: true
```

:::danger

Marking a plugin as supported on Folia is *not nearly enough* to support Folia.
You must specially develop your plugin with the intent of supporting Folia, keeping things mentioned on this page in mind.

:::

# Checking for Folia

Depending on what platform your plugin is running on, you may need to implement features differently. For this, you can
Expand Down
Loading