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

@@ -21,7 +21,7 @@ repositories {
}
dependencies {
compileOnly("io.papermc.paper:paper-api:1.21.5-R0.1-SNAPSHOT")
compileOnly("io.papermc.paper:paper-api:1.21.7-R0.1-SNAPSHOT")
implementation("dev.jorel:commandapi-bukkit-shade-mojang-mapped:10.1.1")
@@ -30,7 +30,7 @@ dependencies {
compileOnly(files("libs/geyserutils-spigot-1.0-SNAPSHOT.jar"))
compileOnly("org.geysermc.floodgate:api:2.2.4-SNAPSHOT")
implementation("com.github.retrooper:packetevents-spigot:2.8.0")
implementation("com.github.retrooper:packetevents-spigot:2.9.0-SNAPSHOT")
implementation("org.reflections:reflections:0.10.2")
}

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);
}