Skip to content

Commit ae2ac5d

Browse files
committed
Prepare for release of 1.6.0
1 parent a76fe2d commit ae2ac5d

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
java.sourceCompatibility = JavaVersion.VERSION_25
99

1010
group = "com.github.SkriptDev"
11-
val projectVersion = "1.5.0"
11+
val projectVersion = "1.6.0"
1212
val hytaleVersion = "2026.03.26-89796e57b"
1313
// You can find Hytale versions on their maven repo:
1414
// https://maven.hytale.com/release/com/hypixel/hytale/Server/maven-metadata.xml

src/main/java/com/github/skriptdev/skript/plugin/elements/functions/DefaultFunctions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ private static void playerFunctions(SkriptRegistration reg) {
233233
.name("Player")
234234
.description("Returns the player with the given name in the given world.")
235235
.examples("set {_player} to player(\"ShaneBee\", world(\"default\"))")
236-
.since("INSERT VERSION")
236+
.since("1.6.0")
237237
.register();
238238

239239
reg.newJavaFunction("playerRef", PlayerRef.class, true)
@@ -245,7 +245,7 @@ private static void playerFunctions(SkriptRegistration reg) {
245245
.name("PlayerRef")
246246
.description("Returns the PlayerRef with the given name.")
247247
.examples("set {_ref} to playerRef(\"ShaneBee\")")
248-
.since("INSERT VERSION")
248+
.since("1.6.0")
249249
.register();
250250
}
251251

src/main/java/com/github/skriptdev/skript/plugin/elements/types/TypesItem.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ static void register(SkriptRegistration reg) {
2828
reg.newType(Inventory.class, "inventory", "inventor@y@ies")
2929
.name("Inventory")
3030
.description("Represents an inventory of an entity or block.",
31-
"**DEPRRECATED as of `INSERT VERSION` and will be removed in the future.**",
31+
"**DEPRRECATED as of `1.6.0` and will be removed in the future.**",
3232
"Hytale no longer will be using Inventory.")
3333
.since("1.0.0")
3434
.toStringFunction(Inventory::toString)

0 commit comments

Comments
 (0)