updated to PE 2.9.0 SNAPSHOT

This commit is contained in:
TheLividaProject
2025-07-02 13:41:42 +01:00
parent c83fc4dd0a
commit 63c20d3f74
21 changed files with 3 additions and 3 deletions

View File

@@ -77,7 +77,7 @@ public class GeyserModelEngine extends JavaPlugin {
}
private void loadRunnables() {
Bukkit.getAsyncScheduler().runAtFixedRate(this, new UpdateTaskRunnable(this), 10, configManager.getConfig().getLong("entity-position-update-period"), TimeUnit.MILLISECONDS);
Bukkit.getAsyncScheduler().runAtFixedRate(this, new UpdateTaskRunnable(this), 10, configManager.getConfig().getLong("entity-position-update-period", 35), TimeUnit.MILLISECONDS);
Bukkit.getAsyncScheduler().runAtFixedRate(this, new BedrockMountControlRunnable(this), 1, 1, TimeUnit.MILLISECONDS);
}