Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
12 changes: 6 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down Expand Up @@ -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")
Expand All @@ -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")
Expand Down Expand Up @@ -113,4 +113,4 @@ configurations.matching { it.isCanBeResolved }.all {
attributes {
attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, 25)
}
}
}
Loading