From c01c886af51b1b028bfc97790895804409780246 Mon Sep 17 00:00:00 2001 From: CrebsTheCoder Date: Wed, 29 Jul 2026 14:00:18 +0800 Subject: [PATCH] bump support for Minecraft 26.2 and Skript 2.16. --- README.md | 6 +++--- build.gradle.kts | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 1e4dd95..5e1393f 100644 --- a/README.md +++ b/README.md @@ -20,14 +20,14 @@ ## Requirements PacketEventsSK requires the following to run: -- **Minecraft 1.18+** Paper-compatible server +- **Minecraft 26.2+** Paper-compatible server - **[PacketEvents](https://modrinth.com/plugin/packetevents)** installed as a separate paper plugin Optionally install [SkBee](https://modrinth.com/plugin/skbee/versions) for the NBT Compound hook. > [!CAUTION] > PacketEventsSK attempts to support the latest versions of skript and minecraft: -> - **Paper 1.21.10+** -> - **Skript 2.15.0+** +> - **Paper 26.2+** +> - **Skript 2.16.0+** > - **SkBee 1.17.2+** > > There are many more versions that work, but you won't receive support for those. diff --git a/build.gradle.kts b/build.gradle.kts index 76aad03..38aaaa7 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -9,9 +9,9 @@ plugins { // Version of PacketEventsSK val projectVersion = "1.1.3" // API Version -val apiVersion = "26.1.2" +val apiVersion = "26.2" // Minimum paper version that PacketEventsSK supports -val minApiVersion = "1.21.10" +val minApiVersion = "26.2" // Where this builds on the server val serverLocation = "C:/Users/jaspe/Desktop/Servers/packetSKTestServer/plugins" @@ -44,10 +44,10 @@ dependencies { paperweight.paperDevBundle("$apiVersion.build.+") // PacketEvents - compileOnly("com.github.retrooper:packetevents-spigot:2.12.1") + compileOnly("com.github.retrooper:packetevents-spigot:2.13.0") // Skript - compileOnly("com.github.SkriptLang:Skript:2.15.2") + compileOnly("com.github.SkriptLang:Skript:2.16.0") // SkBee compileOnly("com.github.ShaneBeee:SkBee:3.23.0") @@ -56,7 +56,7 @@ dependencies { implementation("com.github.ShaneBeee:SkriptRegistration:1.4.3") // EntityLib - implementation("io.github.tofaa2:spigot:3.3.0-SNAPSHOT") + implementation("io.github.tofaa2:spigot:3.3.6-SNAPSHOT") // bStats Metrics implementation("org.bstats:bstats-bukkit:3.2.1") @@ -113,4 +113,4 @@ configurations.matching { it.isCanBeResolved }.all { attributes { attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, 25) } -} \ No newline at end of file +}