├── .DS_Store ├── .github └── workflows │ ├── 1211.yml │ └── foliaRef.yml ├── .gitignore ├── .gradle ├── 8.8 │ ├── checksums │ │ ├── checksums.lock │ │ ├── md5-checksums.bin │ │ └── sha1-checksums.bin │ ├── dependencies-accessors │ │ └── gc.properties │ ├── executionHistory │ │ └── executionHistory.lock │ ├── fileChanges │ │ └── last-build.bin │ ├── fileHashes │ │ ├── fileHashes.bin │ │ └── fileHashes.lock │ └── gc.properties ├── buildOutputCleanup │ ├── buildOutputCleanup.lock │ └── cache.properties └── vcs-1 │ └── gc.properties ├── README.md ├── apiary.png ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── jitpack.yml ├── patches ├── api │ ├── 0001-Add-deprecated-tag-to-getScheduler-function.patch │ └── 0002-Purpur-Remove-timings.patch └── server │ ├── 0001-Rebranding.patch │ ├── 0002-Feature-secure-seed.patch │ ├── 0003-Enable-a-lot-of-commands.patch │ ├── 0004-Remove-unsupporderexception-throws-in-scoreboard-cla.patch │ ├── 0005-Add-config.patch │ ├── 0006-Reenable-command-blocks.patch │ ├── 0007-Send-null-entity-packets.patch │ ├── 0008-Add-Apiary-commands.patch │ ├── 0009-Redirect-getTPS-function-to-region-tps.patch │ ├── 0010-Fix-server-crash-when-teleport-player-while-spectate.patch │ ├── 0011-Redirect-CraftScheduler-to-GlobalRegionScheduler.patch │ ├── 0012-Kaiiju-Don-t-pathfind-outside-region.patch │ ├── 0013-Pufferfish-Cache-climbing-check-for-activation.patch │ ├── 0014-Pufferfish-Improve-fluid-direction-caching.patch │ ├── 0015-Pufferfish-Early-return-optimization-for-target-find.patch │ ├── 0016-Pufferfish-Reduce-chunk-loading-lookups.patch │ ├── 0017-Pufferfish-Only-check-for-spooky-season-once-an-hour.patch │ ├── 0018-Allow-null-plugins-in-region-scheduler.patch │ ├── 0019-Pufferfish-Optimize-random-calls-in-chunk-ticking.patch │ ├── 0020-Pufferfish-Dynamic-Activation-of-Brain.patch │ ├── 0021-Leaves-Protocol-Core.patch │ ├── 0022-Leaves-Appleskin-Protocol.patch │ ├── 0023-Gale-Faster-chunk-serialization.patch │ ├── 0024-Gale-Skip-entity-move-if-movement-is-zero.patch │ ├── 0025-Gale-Optimize-sun-burn-tick.patch │ ├── 0026-Purpur-Alternative-Keepalive-Handling.patch │ ├── 0027-Purpur-Remove-timings.patch │ ├── 0028-Add-chance-config-for-piglin-spawn-in-nether-portal.patch │ ├── 0029-Leaf-Virtual-Thread-for-async-scheduler.patch │ ├── 0030-Carpet-Fixes-getBiome-Optimize.patch │ ├── 0031-Sparkly-Paper-Optimize-canSee-checks.patch │ ├── 0032-SparklyPaper-Skip-MapItem-update-if-the-map-does-not.patch │ ├── 0033-SparklyPaper-Skip-distanceToSqr-call-in-ServerEntity.patch │ ├── 0034-Leaf-Skip-event-if-no-listeners.patch │ ├── 0035-Divine-lithium-ai.raid.patch │ ├── 0036-Divine-lithium-entity.fast_elytra_check-entity.fast_.patch │ ├── 0037-Purpur-Fix-outdated-server-showing-in-ping-before-se.patch │ ├── 0038-Add-linear-format-from-LinearPurpur.patch │ ├── 0039-Change-profiler-permission.patch │ ├── 0040-Pufferfish-Entity-TTL.patch │ ├── 0041-Lumina-PCA-sync-protocol.patch │ ├── 0042-Divine-Optimize-CraftServer.getWorld-UUID.patch │ ├── 0043-LevelBukkit-Show-which-zone-has-which-players-in-tps.patch │ ├── 0044-ShreddedPaper-Optimization-entity-activation-check-f.patch │ ├── 0045-Leaf-Optimize-check-nearby-fire-or-lava-on-entity-mo.patch │ ├── 0046-Airplane-Remove-streams-in-PoiCompetitorScan.patch │ ├── 0047-Paper-PR-Reduce-work-done-in-CraftMapCanvas.drawImag.patch │ ├── 0048-Paper-PR-Throttle-failed-spawn-attempts.patch │ ├── 0049-Paper-PR-Prevent-zombie-reinforcements-loading-chunk.patch │ └── 0050-Redirect-teleport-to-teleportAsync.patch └── settings.gradle.kts /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/workflows/1211.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/.github/workflows/1211.yml -------------------------------------------------------------------------------- /.github/workflows/foliaRef.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/.github/workflows/foliaRef.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/.gitignore -------------------------------------------------------------------------------- /.gradle/8.8/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/.gradle/8.8/checksums/checksums.lock -------------------------------------------------------------------------------- /.gradle/8.8/checksums/md5-checksums.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/.gradle/8.8/checksums/md5-checksums.bin -------------------------------------------------------------------------------- /.gradle/8.8/checksums/sha1-checksums.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/.gradle/8.8/checksums/sha1-checksums.bin -------------------------------------------------------------------------------- /.gradle/8.8/dependencies-accessors/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gradle/8.8/executionHistory/executionHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/.gradle/8.8/executionHistory/executionHistory.lock -------------------------------------------------------------------------------- /.gradle/8.8/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gradle/8.8/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/.gradle/8.8/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /.gradle/8.8/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/.gradle/8.8/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /.gradle/8.8/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Thu Sep 19 13:36:20 BDT 2024 2 | gradle.version=8.8 3 | -------------------------------------------------------------------------------- /.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/README.md -------------------------------------------------------------------------------- /apiary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/apiary.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/gradlew.bat -------------------------------------------------------------------------------- /jitpack.yml: -------------------------------------------------------------------------------- 1 | jdk: 2 | - openjdk17 3 | -------------------------------------------------------------------------------- /patches/api/0001-Add-deprecated-tag-to-getScheduler-function.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/api/0001-Add-deprecated-tag-to-getScheduler-function.patch -------------------------------------------------------------------------------- /patches/api/0002-Purpur-Remove-timings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/api/0002-Purpur-Remove-timings.patch -------------------------------------------------------------------------------- /patches/server/0001-Rebranding.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0001-Rebranding.patch -------------------------------------------------------------------------------- /patches/server/0002-Feature-secure-seed.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0002-Feature-secure-seed.patch -------------------------------------------------------------------------------- /patches/server/0003-Enable-a-lot-of-commands.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0003-Enable-a-lot-of-commands.patch -------------------------------------------------------------------------------- /patches/server/0004-Remove-unsupporderexception-throws-in-scoreboard-cla.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0004-Remove-unsupporderexception-throws-in-scoreboard-cla.patch -------------------------------------------------------------------------------- /patches/server/0005-Add-config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0005-Add-config.patch -------------------------------------------------------------------------------- /patches/server/0006-Reenable-command-blocks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0006-Reenable-command-blocks.patch -------------------------------------------------------------------------------- /patches/server/0007-Send-null-entity-packets.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0007-Send-null-entity-packets.patch -------------------------------------------------------------------------------- /patches/server/0008-Add-Apiary-commands.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0008-Add-Apiary-commands.patch -------------------------------------------------------------------------------- /patches/server/0009-Redirect-getTPS-function-to-region-tps.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0009-Redirect-getTPS-function-to-region-tps.patch -------------------------------------------------------------------------------- /patches/server/0010-Fix-server-crash-when-teleport-player-while-spectate.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0010-Fix-server-crash-when-teleport-player-while-spectate.patch -------------------------------------------------------------------------------- /patches/server/0011-Redirect-CraftScheduler-to-GlobalRegionScheduler.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0011-Redirect-CraftScheduler-to-GlobalRegionScheduler.patch -------------------------------------------------------------------------------- /patches/server/0012-Kaiiju-Don-t-pathfind-outside-region.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0012-Kaiiju-Don-t-pathfind-outside-region.patch -------------------------------------------------------------------------------- /patches/server/0013-Pufferfish-Cache-climbing-check-for-activation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0013-Pufferfish-Cache-climbing-check-for-activation.patch -------------------------------------------------------------------------------- /patches/server/0014-Pufferfish-Improve-fluid-direction-caching.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0014-Pufferfish-Improve-fluid-direction-caching.patch -------------------------------------------------------------------------------- /patches/server/0015-Pufferfish-Early-return-optimization-for-target-find.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0015-Pufferfish-Early-return-optimization-for-target-find.patch -------------------------------------------------------------------------------- /patches/server/0016-Pufferfish-Reduce-chunk-loading-lookups.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0016-Pufferfish-Reduce-chunk-loading-lookups.patch -------------------------------------------------------------------------------- /patches/server/0017-Pufferfish-Only-check-for-spooky-season-once-an-hour.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0017-Pufferfish-Only-check-for-spooky-season-once-an-hour.patch -------------------------------------------------------------------------------- /patches/server/0018-Allow-null-plugins-in-region-scheduler.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0018-Allow-null-plugins-in-region-scheduler.patch -------------------------------------------------------------------------------- /patches/server/0019-Pufferfish-Optimize-random-calls-in-chunk-ticking.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0019-Pufferfish-Optimize-random-calls-in-chunk-ticking.patch -------------------------------------------------------------------------------- /patches/server/0020-Pufferfish-Dynamic-Activation-of-Brain.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0020-Pufferfish-Dynamic-Activation-of-Brain.patch -------------------------------------------------------------------------------- /patches/server/0021-Leaves-Protocol-Core.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0021-Leaves-Protocol-Core.patch -------------------------------------------------------------------------------- /patches/server/0022-Leaves-Appleskin-Protocol.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0022-Leaves-Appleskin-Protocol.patch -------------------------------------------------------------------------------- /patches/server/0023-Gale-Faster-chunk-serialization.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0023-Gale-Faster-chunk-serialization.patch -------------------------------------------------------------------------------- /patches/server/0024-Gale-Skip-entity-move-if-movement-is-zero.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0024-Gale-Skip-entity-move-if-movement-is-zero.patch -------------------------------------------------------------------------------- /patches/server/0025-Gale-Optimize-sun-burn-tick.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0025-Gale-Optimize-sun-burn-tick.patch -------------------------------------------------------------------------------- /patches/server/0026-Purpur-Alternative-Keepalive-Handling.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0026-Purpur-Alternative-Keepalive-Handling.patch -------------------------------------------------------------------------------- /patches/server/0027-Purpur-Remove-timings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0027-Purpur-Remove-timings.patch -------------------------------------------------------------------------------- /patches/server/0028-Add-chance-config-for-piglin-spawn-in-nether-portal.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0028-Add-chance-config-for-piglin-spawn-in-nether-portal.patch -------------------------------------------------------------------------------- /patches/server/0029-Leaf-Virtual-Thread-for-async-scheduler.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0029-Leaf-Virtual-Thread-for-async-scheduler.patch -------------------------------------------------------------------------------- /patches/server/0030-Carpet-Fixes-getBiome-Optimize.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0030-Carpet-Fixes-getBiome-Optimize.patch -------------------------------------------------------------------------------- /patches/server/0031-Sparkly-Paper-Optimize-canSee-checks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0031-Sparkly-Paper-Optimize-canSee-checks.patch -------------------------------------------------------------------------------- /patches/server/0032-SparklyPaper-Skip-MapItem-update-if-the-map-does-not.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0032-SparklyPaper-Skip-MapItem-update-if-the-map-does-not.patch -------------------------------------------------------------------------------- /patches/server/0033-SparklyPaper-Skip-distanceToSqr-call-in-ServerEntity.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0033-SparklyPaper-Skip-distanceToSqr-call-in-ServerEntity.patch -------------------------------------------------------------------------------- /patches/server/0034-Leaf-Skip-event-if-no-listeners.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0034-Leaf-Skip-event-if-no-listeners.patch -------------------------------------------------------------------------------- /patches/server/0035-Divine-lithium-ai.raid.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0035-Divine-lithium-ai.raid.patch -------------------------------------------------------------------------------- /patches/server/0036-Divine-lithium-entity.fast_elytra_check-entity.fast_.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0036-Divine-lithium-entity.fast_elytra_check-entity.fast_.patch -------------------------------------------------------------------------------- /patches/server/0037-Purpur-Fix-outdated-server-showing-in-ping-before-se.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0037-Purpur-Fix-outdated-server-showing-in-ping-before-se.patch -------------------------------------------------------------------------------- /patches/server/0038-Add-linear-format-from-LinearPurpur.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0038-Add-linear-format-from-LinearPurpur.patch -------------------------------------------------------------------------------- /patches/server/0039-Change-profiler-permission.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0039-Change-profiler-permission.patch -------------------------------------------------------------------------------- /patches/server/0040-Pufferfish-Entity-TTL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0040-Pufferfish-Entity-TTL.patch -------------------------------------------------------------------------------- /patches/server/0041-Lumina-PCA-sync-protocol.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0041-Lumina-PCA-sync-protocol.patch -------------------------------------------------------------------------------- /patches/server/0042-Divine-Optimize-CraftServer.getWorld-UUID.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0042-Divine-Optimize-CraftServer.getWorld-UUID.patch -------------------------------------------------------------------------------- /patches/server/0043-LevelBukkit-Show-which-zone-has-which-players-in-tps.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0043-LevelBukkit-Show-which-zone-has-which-players-in-tps.patch -------------------------------------------------------------------------------- /patches/server/0044-ShreddedPaper-Optimization-entity-activation-check-f.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0044-ShreddedPaper-Optimization-entity-activation-check-f.patch -------------------------------------------------------------------------------- /patches/server/0045-Leaf-Optimize-check-nearby-fire-or-lava-on-entity-mo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0045-Leaf-Optimize-check-nearby-fire-or-lava-on-entity-mo.patch -------------------------------------------------------------------------------- /patches/server/0046-Airplane-Remove-streams-in-PoiCompetitorScan.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0046-Airplane-Remove-streams-in-PoiCompetitorScan.patch -------------------------------------------------------------------------------- /patches/server/0047-Paper-PR-Reduce-work-done-in-CraftMapCanvas.drawImag.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0047-Paper-PR-Reduce-work-done-in-CraftMapCanvas.drawImag.patch -------------------------------------------------------------------------------- /patches/server/0048-Paper-PR-Throttle-failed-spawn-attempts.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0048-Paper-PR-Throttle-failed-spawn-attempts.patch -------------------------------------------------------------------------------- /patches/server/0049-Paper-PR-Prevent-zombie-reinforcements-loading-chunk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0049-Paper-PR-Prevent-zombie-reinforcements-loading-chunk.patch -------------------------------------------------------------------------------- /patches/server/0050-Redirect-teleport-to-teleportAsync.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/patches/server/0050-Redirect-teleport-to-teleportAsync.patch -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssquadteam/ApiaryMC/HEAD/settings.gradle.kts --------------------------------------------------------------------------------