├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── behavior-bug.yml │ ├── config.yml │ ├── feature-request.yml │ ├── performance-problems.yml │ └── server-crash-or-stacktrace.yml └── workflows │ └── build.yml ├── .gitignore ├── PATCHES-LICENSE ├── PROJECT_DESCRIPTION.md ├── README.md ├── REGION_LOGIC.md ├── folia-api ├── build.gradle.kts.patch └── paper-patches │ └── features │ ├── 0001-Force-disable-timings.patch │ ├── 0002-Region-scheduler-API.patch │ ├── 0003-Require-plugins-to-be-explicitly-marked-as-Folia-sup.patch │ └── 0004-Add-TPS-From-Region.patch ├── folia-server ├── build.gradle.kts.patch ├── minecraft-patches │ └── features │ │ ├── 0001-Region-Threading-Base.patch │ │ ├── 0002-Max-pending-logins.patch │ │ ├── 0003-Add-chunk-system-throughput-counters-to-tps.patch │ │ ├── 0004-Prevent-block-updates-in-non-loaded-or-non-owned-chu.patch │ │ ├── 0005-Block-reading-in-world-tile-entities-on-worldgen-thr.patch │ │ ├── 0006-Sync-vehicle-position-to-player-position-on-player-d.patch │ │ ├── 0007-Region-profiler.patch │ │ └── 0008-Add-watchdog-thread.patch └── paper-patches │ └── features │ ├── 0001-Region-Threading-Base.patch │ ├── 0002-Update-Logo.patch │ ├── 0003-Build-changes.patch │ ├── 0004-Fix-tests-by-removing-them.patch │ ├── 0005-Region-profiler.patch │ ├── 0006-Add-watchdog-thread.patch │ └── 0007-Add-TPS-From-Region.patch ├── folia.png ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── patch.bat ├── patch.sh ├── rb.bat ├── rb.sh └── settings.gradle.kts /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/behavior-bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/.github/ISSUE_TEMPLATE/behavior-bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/performance-problems.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/.github/ISSUE_TEMPLATE/performance-problems.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/server-crash-or-stacktrace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/.github/ISSUE_TEMPLATE/server-crash-or-stacktrace.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/.gitignore -------------------------------------------------------------------------------- /PATCHES-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/PATCHES-LICENSE -------------------------------------------------------------------------------- /PROJECT_DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/PROJECT_DESCRIPTION.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/README.md -------------------------------------------------------------------------------- /REGION_LOGIC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/REGION_LOGIC.md -------------------------------------------------------------------------------- /folia-api/build.gradle.kts.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/folia-api/build.gradle.kts.patch -------------------------------------------------------------------------------- /folia-api/paper-patches/features/0001-Force-disable-timings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/folia-api/paper-patches/features/0001-Force-disable-timings.patch -------------------------------------------------------------------------------- /folia-api/paper-patches/features/0002-Region-scheduler-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/folia-api/paper-patches/features/0002-Region-scheduler-API.patch -------------------------------------------------------------------------------- /folia-api/paper-patches/features/0003-Require-plugins-to-be-explicitly-marked-as-Folia-sup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/folia-api/paper-patches/features/0003-Require-plugins-to-be-explicitly-marked-as-Folia-sup.patch -------------------------------------------------------------------------------- /folia-api/paper-patches/features/0004-Add-TPS-From-Region.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/folia-api/paper-patches/features/0004-Add-TPS-From-Region.patch -------------------------------------------------------------------------------- /folia-server/build.gradle.kts.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/folia-server/build.gradle.kts.patch -------------------------------------------------------------------------------- /folia-server/minecraft-patches/features/0001-Region-Threading-Base.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/folia-server/minecraft-patches/features/0001-Region-Threading-Base.patch -------------------------------------------------------------------------------- /folia-server/minecraft-patches/features/0002-Max-pending-logins.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/folia-server/minecraft-patches/features/0002-Max-pending-logins.patch -------------------------------------------------------------------------------- /folia-server/minecraft-patches/features/0003-Add-chunk-system-throughput-counters-to-tps.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/folia-server/minecraft-patches/features/0003-Add-chunk-system-throughput-counters-to-tps.patch -------------------------------------------------------------------------------- /folia-server/minecraft-patches/features/0004-Prevent-block-updates-in-non-loaded-or-non-owned-chu.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/folia-server/minecraft-patches/features/0004-Prevent-block-updates-in-non-loaded-or-non-owned-chu.patch -------------------------------------------------------------------------------- /folia-server/minecraft-patches/features/0005-Block-reading-in-world-tile-entities-on-worldgen-thr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/folia-server/minecraft-patches/features/0005-Block-reading-in-world-tile-entities-on-worldgen-thr.patch -------------------------------------------------------------------------------- /folia-server/minecraft-patches/features/0006-Sync-vehicle-position-to-player-position-on-player-d.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/folia-server/minecraft-patches/features/0006-Sync-vehicle-position-to-player-position-on-player-d.patch -------------------------------------------------------------------------------- /folia-server/minecraft-patches/features/0007-Region-profiler.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/folia-server/minecraft-patches/features/0007-Region-profiler.patch -------------------------------------------------------------------------------- /folia-server/minecraft-patches/features/0008-Add-watchdog-thread.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/folia-server/minecraft-patches/features/0008-Add-watchdog-thread.patch -------------------------------------------------------------------------------- /folia-server/paper-patches/features/0001-Region-Threading-Base.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/folia-server/paper-patches/features/0001-Region-Threading-Base.patch -------------------------------------------------------------------------------- /folia-server/paper-patches/features/0002-Update-Logo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/folia-server/paper-patches/features/0002-Update-Logo.patch -------------------------------------------------------------------------------- /folia-server/paper-patches/features/0003-Build-changes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/folia-server/paper-patches/features/0003-Build-changes.patch -------------------------------------------------------------------------------- /folia-server/paper-patches/features/0004-Fix-tests-by-removing-them.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/folia-server/paper-patches/features/0004-Fix-tests-by-removing-them.patch -------------------------------------------------------------------------------- /folia-server/paper-patches/features/0005-Region-profiler.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/folia-server/paper-patches/features/0005-Region-profiler.patch -------------------------------------------------------------------------------- /folia-server/paper-patches/features/0006-Add-watchdog-thread.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/folia-server/paper-patches/features/0006-Add-watchdog-thread.patch -------------------------------------------------------------------------------- /folia-server/paper-patches/features/0007-Add-TPS-From-Region.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/folia-server/paper-patches/features/0007-Add-TPS-From-Region.patch -------------------------------------------------------------------------------- /folia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/folia.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/gradlew.bat -------------------------------------------------------------------------------- /patch.bat: -------------------------------------------------------------------------------- 1 | gradlew applyAllPatches 2 | -------------------------------------------------------------------------------- /patch.sh: -------------------------------------------------------------------------------- 1 | ./gradlew applyAllPatches 2 | -------------------------------------------------------------------------------- /rb.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/rb.bat -------------------------------------------------------------------------------- /rb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/rb.sh -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Folia/HEAD/settings.gradle.kts --------------------------------------------------------------------------------