force disable folia support due to bugs

This commit is contained in:
rockyhawk64 2025-07-01 17:04:38 +10:00
parent 886efc6e6f
commit c33a0acf7c
2 changed files with 1 additions and 2 deletions

View File

@ -1,4 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="MavenProjectsManager">

View File

@ -25,7 +25,7 @@ public class SchedulerAdapter {
private boolean isFoliaServer() {
try {
Class.forName("io.papermc.paper.threadedregions.scheduler.GlobalRegionScheduler");
return true;
return false; // Force folia feature disabled until bugs fixed
} catch (ClassNotFoundException e) {
return false;
}